From 973a4b5e679d22988671f7019103f0aa0833d4c6 Mon Sep 17 00:00:00 2001 From: Van Waholtz Date: Fri, 28 Jan 2022 19:32:20 +0800 Subject: [PATCH 1/3] luci-app-frpc: use anonymous sections 1. Use anonymous sections and add name options to specify the proxy name 2. Add server name field for visitor mode Signed-off-by: Van Waholtz --- .../htdocs/luci-static/resources/view/frpc.js | 32 +++++++++++-------- 1 file changed, 19 insertions(+), 13 deletions(-) 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 dc9241cec9..4c8b19eeb1 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 @@ -39,6 +39,7 @@ var commonConf = [ ]; var baseProxyConf = [ + [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".
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.
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.
By default, this value is false.'), {datatype: 'bool'}], @@ -65,6 +66,7 @@ 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')], ]; @@ -82,12 +84,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]; } @@ -186,21 +196,17 @@ 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.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; From 0dbe3198bfe1feda71efddb62d6c198a69e0dcc1 Mon Sep 17 00:00:00 2001 From: Van Waholtz Date: Thu, 24 Mar 2022 11:40:04 +0800 Subject: [PATCH 2/3] luci-app-frpc: add settings for log Signed-off-by: Van Waholtz --- .../luci-app-frpc/htdocs/luci-static/resources/view/frpc.js | 2 ++ 1 file changed, 2 insertions(+) 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 4c8b19eeb1..c859aa177f 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 @@ -20,7 +20,9 @@ var commonConf = [ [form.Value, 'server_addr', _('Server address'), _('ServerAddr specifies the address of the server to connect to.
By default, this value is "0.0.0.0".'), {datatype: 'host'}], [form.Value, 'server_port', _('Server port'), _('ServerPort specifies the port to connect to the server on.
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.
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.
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".
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".
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.
By default, this value is "".')], [form.Value, 'admin_addr', _('Admin address'), _('AdminAddr specifies the address that the admin server binds to.
By default, this value is "127.0.0.1".'), {datatype: 'ipaddr'}], From d94b83beb38d2633eedc9541e3aef362ec5b49de Mon Sep 17 00:00:00 2001 From: Van Waholtz Date: Thu, 24 Mar 2022 11:48:45 +0800 Subject: [PATCH 3/3] luci-app-frpc: update i18n Signed-off-by: Van Waholtz --- applications/luci-app-frpc/po/ar/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/bg/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/bn_BD/frpc.po | 167 ++++++++------ applications/luci-app-frpc/po/ca/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/cs/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/da/frpc.po | 167 ++++++++------ applications/luci-app-frpc/po/de/frpc.po | 214 ++++++++++-------- applications/luci-app-frpc/po/el/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/en/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/es/frpc.po | 201 +++++++++------- applications/luci-app-frpc/po/fi/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/fr/frpc.po | 206 ++++++++++------- applications/luci-app-frpc/po/he/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/hi/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/hu/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/it/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/ja/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/ko/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/mr/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/ms/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/nb_NO/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/pl/frpc.po | 200 +++++++++------- applications/luci-app-frpc/po/pt/frpc.po | 197 +++++++++------- applications/luci-app-frpc/po/pt_BR/frpc.po | 197 +++++++++------- applications/luci-app-frpc/po/ro/frpc.po | 174 ++++++++------ applications/luci-app-frpc/po/ru/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/sk/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/sv/frpc.po | 187 ++++++++------- .../luci-app-frpc/po/templates/frpc.pot | 173 ++++++++------ applications/luci-app-frpc/po/tr/frpc.po | 205 ++++++++++------- applications/luci-app-frpc/po/uk/frpc.po | 188 ++++++++------- applications/luci-app-frpc/po/vi/frpc.po | 184 ++++++++------- applications/luci-app-frpc/po/zh_Hans/frpc.po | 189 +++++++++------- applications/luci-app-frpc/po/zh_Hant/frpc.po | 203 ++++++++++------- 34 files changed, 3742 insertions(+), 2622 deletions(-) diff --git a/applications/luci-app-frpc/po/ar/frpc.po b/applications/luci-app-frpc/po/ar/frpc.po index 71cc90f172..04d95c154f 100644 --- a/applications/luci-app-frpc/po/ar/frpc.po +++ b/applications/luci-app-frpc/po/ar/frpc.po @@ -11,75 +11,79 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -87,21 +91,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "التشفير" @@ -109,11 +113,11 @@ msgstr "التشفير" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "الاعدادات العامة" @@ -121,11 +125,11 @@ msgstr "الاعدادات العامة" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -133,73 +137,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -210,63 +222,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -274,7 +302,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -290,14 +318,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -306,34 +338,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -341,50 +373,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 c37ffacc9f..0e2d95333c 100644 --- a/applications/luci-app-frpc/po/bg/frpc.po +++ b/applications/luci-app-frpc/po/bg/frpc.po @@ -10,75 +10,79 @@ msgstr "" "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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Криптиране" @@ -108,11 +112,11 @@ msgstr "Криптиране" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Основни настройки" @@ -120,11 +124,11 @@ msgstr "Основни настройки" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 3d3f8dc8a7..7260d5f17c 100644 --- a/applications/luci-app-frpc/po/bn_BD/frpc.po +++ b/applications/luci-app-frpc/po/bn_BD/frpc.po @@ -10,75 +10,79 @@ msgstr "" "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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this " "value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "তথ্য সংগ্রহ করা হচ্ছে ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "কনফিগ ফাইলগুলি অস্থায়ী কনফিগ ফাইলের অন্তর্ভুক্ত" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "সাধারণ সেটিংস" @@ -120,11 +124,11 @@ msgstr "সাধারণ সেটিংস" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,33 +136,33 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" @@ -169,36 +173,44 @@ msgid "" "default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "লগ লেভেল" +#: 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 "stderr লগ করুন" @@ -209,26 +221,36 @@ 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.
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\".
By default, this value is \"info" "\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "চলমান না" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp " "README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "চলমান" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -277,7 +304,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "ক্র্যাশ করলে পুনরুজ্জীবিত করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -293,6 +320,10 @@ msgstr "ব্যবহারকারী হিসাবে ডেমন চা 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 "" @@ -309,34 +340,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -344,7 +375,7 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -352,44 +383,44 @@ msgstr "" "LuCI তে অন্তর্ভুক্ত হয়নি এমন কিছু অতিরিক্ত প্যারামিটার নির্দিষ্ট করতে এই তালিকাটি " "ব্যবহৃত হবে।" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/ca/frpc.po b/applications/luci-app-frpc/po/ca/frpc.po index 01ca397daf..3078206347 100644 --- a/applications/luci-app-frpc/po/ca/frpc.po +++ b/applications/luci-app-frpc/po/ca/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.1\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Paràmetres generals" @@ -120,11 +124,11 @@ msgstr "Paràmetres generals" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 52b16cbb1f..17cdc2e2b4 100644 --- a/applications/luci-app-frpc/po/cs/frpc.po +++ b/applications/luci-app-frpc/po/cs/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Další konfigurace" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "Komprese" @@ -86,21 +90,21 @@ msgstr "Komprese" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Vlastní domény" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Šifrování" @@ -108,11 +112,11 @@ msgstr "Šifrování" msgid "Environment variable" msgstr "Proměnná prostředí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Obecná nastavení" @@ -120,11 +124,11 @@ msgstr "Obecná nastavení" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Nastavení HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP heslo" @@ -132,73 +136,81 @@ msgstr "HTTP heslo" msgid "HTTP proxy" msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Lokální port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Nastavení proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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: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.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "frp Klient" diff --git a/applications/luci-app-frpc/po/da/frpc.po b/applications/luci-app-frpc/po/da/frpc.po index 8194716be0..334327a120 100644 --- a/applications/luci-app-frpc/po/da/frpc.po +++ b/applications/luci-app-frpc/po/da/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.11.1-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this " "value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -120,11 +124,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,33 +136,33 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" @@ -169,36 +173,44 @@ msgid "" "default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" @@ -209,64 +221,79 @@ 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.
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\".
By default, this value is \"info" "\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -274,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rolle" @@ -290,6 +317,10 @@ msgstr "" 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 "" @@ -306,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -341,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 72a982e60d..a07999fdbd 100644 --- a/applications/luci-app-frpc/po/de/frpc.po +++ b/applications/luci-app-frpc/po/de/frpc.po @@ -10,57 +10,61 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.11-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -"AdminAddr spezifiziert die Adresse auf der der Admin-Server lauscht." -"
Standard für diesen Wert ist \"127.0.0.1\"." - -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 -msgid "" -"AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.
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.
Standardwert ist " -"0." +"AdminAddr spezifiziert die Adresse auf der der Admin-Server lauscht.
Standard für diesen Wert ist \"127.0.0.1\"." #: 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.
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.
Standardwert " +"ist 0." + +#: 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." "
By default, this value is \"admin\"." msgstr "" "AdminPwd spezifiziert das Kennwort, dass der Admin-Server zum Login abfrägt." "
Standardkennwort ist \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -68,11 +72,11 @@ msgstr "" "AdminUser spezifiziert den Benutzername, den der Admin-Server fürs Login " "verwenden soll.
Standardnutzer ist \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -83,15 +87,15 @@ msgstr "" "mitgelieferten ausführbaren Datei mittels statik geladen.
Standardwert " "ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Ermittle Daten..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Gemeinsame Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Komprimierung" @@ -99,15 +103,15 @@ msgstr "Komprimierung" 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:54 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Benutzerdefinierte Domains" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -115,7 +119,7 @@ msgstr "" "DisableLogColor deaktiviert farbiges Log wenn LogWay == \"console\" " "aktiviert ist." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Verschlüsselung" @@ -123,11 +127,11 @@ msgstr "Verschlüsselung" msgid "Environment variable" msgstr "Umgebungsvariable" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Allgemeine Einstellungen" @@ -135,11 +139,11 @@ msgstr "Allgemeine Einstellungen" msgid "Grant access to LuCI app frpc" msgstr "Zugriff auf LuCI-App frpc gewähren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP-Passwort" @@ -147,11 +151,11 @@ msgstr "HTTP-Passwort" msgid "HTTP proxy" msgstr "HTTP-Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP-User" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -161,7 +165,7 @@ msgstr "" "Heartbeats an den Server in Sekunden. Es wird nicht empfohlen, diesen Wert " "zu ändern.
Standardwert hierfür ist 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -171,63 +175,70 @@ msgstr "" "Verzögerung in Sekunden, bevor die Verbindung gekappt wird. Es wird nicht " "empfohlen, diesen Wert zu ändern.
Standardwert hierfür ist 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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." -"
Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable " -"gelesen." +"soll. Falls dieser Wert \"\" ist, wird direkt zum Server verbunden.
Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable gelesen." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Lokale IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Lokaler Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort spezifiziert den Port des Proxys." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Protokollierungsstufe" +#: 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 "Logge stderr" @@ -238,14 +249,29 @@ msgstr "Logge 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
By default, this value is \"info" +"\"." msgstr "" "LogLevel spezifiziert den minimalen Log-Level. Gültige Werte sind \"trace\", " "\"debug\", \"info\", \"warn\" und \"error\".
Standartwert hierfür ist " "\"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -255,14 +281,10 @@ msgstr "" "Loginversuch beenden soll. Falls es auf falsch steht, wir es der client so " "oft versuchen, bis es erfolgreich war.
Standardwert hierfür ist wahr." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "LÄUFT NICHT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "Der Name kann nicht \"common\" sein" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -286,30 +308,35 @@ msgstr "" "verwendet werden soll. Gültige Werte sind \"tcp\", \"kcp\" und \"websocket\"." "
Standardwert hierfür ist \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Proxy-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Proxy-Typ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" "ProxyType spezifiziert den Typ des Proxyservers. Gültige Werte beinhalten " -"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".
Standardwert hierfür " -"ist \"tcp\"." +"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".
Standardwert " +"hierfür ist \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "LÄUFT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Remote-Port" @@ -317,7 +344,7 @@ msgstr "Remote-Port" msgid "Respawn when crashed" msgstr "Starte nach Crash neu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rolle" @@ -333,14 +360,18 @@ msgstr "Daemon als Gruppe ausführen" msgid "Server address" msgstr "Server-Adresse" +#: 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 "Server-Port" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" "ServerAddr spezifiziert die Adresse des Servers zu dem Verbunden werden soll." "
Standardwert hierfür ist \"0.0.0.0\"." @@ -353,28 +384,28 @@ msgstr "" "ServerPort spezifiziert den Port des Servers zu dem verbunden werden soll." "
Standardwert hierfür ist 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Startparameter" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdomain" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: 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:35 +#: 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:35 +#: 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." @@ -382,7 +413,7 @@ 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:31 +#: 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 " @@ -394,7 +425,7 @@ msgstr "" "auf wahr steht, muss der Server ebenfalls TCP-Multiplexing aktiviert haben." "
Standardwert hierfür ist wahr." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -402,11 +433,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -414,10 +445,10 @@ msgid "" 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." -"
Standardwert hierfür ist \"\"." +"ein gleichlautendes Token zur Authorisation eingestellt haben.
Standardwert hierfür ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -425,7 +456,7 @@ msgstr "" "UseCompression legt fest, ob die Datenverbindung mit dem Server komprimiert " "werden soll.
Standardwert hierfür ist falsch." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -435,11 +466,11 @@ msgstr "" "werden soll. Die Verschlüsselung erfolgt mittels der eingestellten Token auf " "Server- und Clientseite.
Standardwert hierfür ist falsch." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Nutzer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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 " @@ -449,9 +480,12 @@ msgstr "" "Clients. Falls dieser Wert \"\" beträgt, werden Proxy-Namen automatisch zu " "\"{user} {proxy_name} \" umgeschrieben.
Standardwert hierfür ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 e81474db7e..e413c7c957 100644 --- a/applications/luci-app-frpc/po/el/frpc.po +++ b/applications/luci-app-frpc/po/el/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.13-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -108,11 +112,11 @@ msgstr "Κρυπτογράφηση" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Γενικές ρυθμίσεις" @@ -120,11 +124,11 @@ msgstr "Γενικές ρυθμίσεις" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "Επίπεδο καταγραφής" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/en/frpc.po index ca65035197..d3f0201c35 100644 --- a/applications/luci-app-frpc/po/en/frpc.po +++ b/applications/luci-app-frpc/po/en/frpc.po @@ -4,75 +4,79 @@ 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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -80,21 +84,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -102,11 +106,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -114,11 +118,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -126,73 +130,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -203,63 +215,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -267,7 +295,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -283,14 +311,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -299,34 +331,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -334,50 +366,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 d17174a5f9..093c813470 100644 --- a/applications/luci-app-frpc/po/es/frpc.po +++ b/applications/luci-app-frpc/po/es/frpc.po @@ -13,31 +13,35 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Clave 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:29 msgid "Admin port" msgstr "Puerto 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:30 msgid "Admin user" msgstr "Usuario del administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -45,17 +49,17 @@ msgstr "" "AdminAddr especifica la dirección a la que se une el servidor de " "administración.
De manera predeterminada, este valor es \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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á." "
De manera predeterminada, este valor es 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -63,7 +67,7 @@ msgstr "" "AdminPwd especifica la contraseña que el servidor de administración usará " "para iniciar sesión.
De manera predeterminada, este valor es \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -71,11 +75,11 @@ msgstr "" "AdminUser especifica el nombre de usuario que el administrador del servidor " "usará para iniciar sesión.
Por defecto, este valor es \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -86,15 +90,15 @@ msgstr "" "cargarán desde el ejecutable incluido usando statik.
Por defecto, este " "valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Recolectando datos..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Configuraciones comunes" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compresión" @@ -104,15 +108,15 @@ 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:54 +#: 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:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -120,7 +124,7 @@ msgstr "" "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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Encriptación" @@ -128,11 +132,11 @@ msgstr "Encriptación" msgid "Environment variable" msgstr "Variable ambiental" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Configuración general" @@ -140,11 +144,11 @@ msgstr "Configuración general" 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:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Configuraciones HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Contraseña HTTP" @@ -152,21 +156,21 @@ msgstr "Contraseña HTTP" msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Usuario HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
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.
Por defecto, " -"este valor es 30." +"servidor, en segundos. No se recomienda cambiar este valor.
Por " +"defecto, este valor es 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -176,59 +180,67 @@ msgstr "" "permitido antes de que finalice la conexión, en segundos. No se recomienda " "cambiar este valor.
Por defecto, este valor es 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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.
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:50 +#: 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" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Puerto local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +#: 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." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: 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:25 +msgid "Log max days" +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Registro de stderr" @@ -239,14 +251,29 @@ msgstr "Registro de 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
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\".
Por defecto, este " "valor es \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -257,15 +284,11 @@ msgstr "" "hasta que un intento de inicio de sesión tenga éxito.
Por defecto, este " "valor es verdadero." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 #, fuzzy msgid "NOT RUNNING" msgstr "NO SE ESTÁ EJECUTANDO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -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:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -289,30 +312,35 @@ msgstr "" "servidor. Los valores válidos son \"tcp\", \"kcp\" y \"websocket\".
De " "manera predeterminada, este valor es \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Configuraciónes del proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
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\".
Por defecto, " -"este valor es \"tcp\"." +"\"tcp\", \"udp\", \"http\", \"https\", \"stcp\" y \"xtcp\".
Por " +"defecto, este valor es \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "EJECUTANDO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Puerto remoto" @@ -320,7 +348,7 @@ msgstr "Puerto remoto" msgid "Respawn when crashed" msgstr "Reaparecer cuando se estrelló" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rol" @@ -336,14 +364,18 @@ msgstr "Ejecutar demonio como usuario" msgid "Server address" msgstr "Dirección del servidor" +#: 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 "Puerto del servidor" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" "ServerAddr especifica la dirección del servidor al que conectarse.
Por " "defecto, este valor es \"0.0.0.0\"." @@ -353,31 +385,31 @@ msgid "" "ServerPort specifies the port to connect to the server on.
By default, " "this value is 7000." msgstr "" -"ServerPort especifica el puerto para conectarse al servidor.
Por defecto, " -"este valor es 7000." +"ServerPort especifica el puerto para conectarse al servidor.
Por " +"defecto, este valor es 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Configuraciones de inicio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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." @@ -385,7 +417,7 @@ 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:31 +#: 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 " @@ -397,7 +429,7 @@ msgstr "" "verdadero, el servidor también debe tener habilitada la multiplexación TCP." "
De manera predeterminada, este valor es verdadero." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -405,11 +437,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -419,7 +451,7 @@ msgstr "" "enviar al servidor. El servidor debe tener un token coincidente para que la " "autorización tenga éxito.
Por defecto, este valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -427,7 +459,7 @@ msgstr "" "UseCompression controla si la comunicación con el servidor se comprimirá o " "no.
Por defecto, este valor es falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -435,14 +467,14 @@ msgid "" 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.
De manera predeterminada, este " -"valor es falso." +"configuración del servidor y del cliente.
De manera predeterminada, " +"este valor es falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -453,12 +485,15 @@ msgstr "" "proxy se cambiarán automáticamente a \"{user}.{Proxy_name}\".
De manera " "predeterminada, este valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 d050510986..bb0a4f5b7d 100644 --- a/applications/luci-app-frpc/po/fi/frpc.po +++ b/applications/luci-app-frpc/po/fi/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.12-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Salaus" @@ -108,11 +112,11 @@ msgstr "Salaus" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Yleiset asetukset" @@ -120,11 +124,11 @@ msgstr "Yleiset asetukset" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "Lokitaso" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 ce270bc00c..a341002fe1 100644 --- a/applications/luci-app-frpc/po/fr/frpc.po +++ b/applications/luci-app-frpc/po/fr/frpc.po @@ -10,31 +10,35 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.10-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -42,17 +46,17 @@ msgstr "" "AdminAddr spécifie l'adresse à laquelle le serveur d'administration se lie." "
Par défaut, cette valeur est \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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é.
Par " "défaut, cette valeur est 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -60,7 +64,7 @@ msgstr "" "AdminPwd spécifie le mot de passe que le serveur d'administration utilisera " "pour la connexion.
Par défaut, cette valeur est \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -68,11 +72,11 @@ msgstr "" "AdminUser spécifie le nom d'utilisateur que le serveur d'administration " "utilisera pour la connexion.
Par défaut, cette valeur est \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -83,15 +87,15 @@ msgstr "" "actifs seront chargés à partir de l'exécutable fourni à l'aide de statik." "
Par défaut, cette valeur est \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Recueillant les données..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Paramètres communs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compression" @@ -101,15 +105,15 @@ msgstr "" "Les fichiers de configuration incluent dans le fichier de configuration " "temporaire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -117,7 +121,7 @@ msgstr "" "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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Chiffrement" @@ -125,11 +129,11 @@ msgstr "Chiffrement" msgid "Environment variable" msgstr "Variable d'environnement" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Paramètres généraux" @@ -137,11 +141,11 @@ msgstr "Paramètres généraux" 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:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Paramètres HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Mot de passe HTTP" @@ -149,21 +153,21 @@ msgstr "Mot de passe HTTP" msgid "HTTP proxy" msgstr "Http proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Utilisateur HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
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." -"
Par défaut, cette valeur est 30." +"serveur, en secondes. Il n'est pas recommandé de modifier cette valeur.
Par défaut, cette valeur est 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -173,58 +177,67 @@ msgstr "" "avant la fin de la connexion, en secondes. Il n'est pas recommandé de " "modifier cette valeur.
Par défaut, cette valeur est 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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é.
Par défaut, " -"cette valeur est lue à partir de la variable d'environnement \"http_proxy\"." +"cette valeur est \"\", le serveur sera directement connecté.
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:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "IP locale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Local port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: 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:25 +msgid "Log max days" +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Log stderr" @@ -235,14 +248,29 @@ 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
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\".
Par défaut, " "cette valeur est \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -250,17 +278,13 @@ msgid "" 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.
Par défaut, cette valeur est " -"vraie." +"ce qu'une tentative de connexion réussisse.
Par défaut, cette valeur " +"est vraie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NON-EXÉCUTANT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -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:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
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\".
Par " -"défaut, cette valeur est \"tcp\"." +"serveur. Les valeurs valides sont \"tcp\", \"kcp\" et \"websocket\".
Par défaut, cette valeur est \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Paramètres du proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Type de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " @@ -303,11 +332,11 @@ msgstr "" "\"udp\", \"http\", \"https\", \"stcp\" et \"xtcp\".
Par défaut, cette " "valeur est \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "EXÉCUTANT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Port distant" @@ -315,7 +344,7 @@ msgstr "Port distant" msgid "Respawn when crashed" msgstr "Réapparaître en cas de crash" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rôle" @@ -331,17 +360,21 @@ msgstr "Exécuter le démon en tant qu'utilisateur" msgid "Server address" msgstr "Adresse du serveur" +#: 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 "Port serveur" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" -"ServerAddr spécifie l'adresse du serveur auquel se connecter.
Par défaut, " -"cette valeur est \"0.0.0.0\"." +"ServerAddr spécifie l'adresse du serveur auquel se connecter.
Par " +"défaut, cette valeur est \"0.0.0.0\"." #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" @@ -351,28 +384,28 @@ msgstr "" "ServerPort spécifie le port sur lequel se connecter au serveur.
Par " "défaut, cette valeur est 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Paramètres de démarrage" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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." @@ -380,7 +413,7 @@ 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:31 +#: 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 " @@ -392,7 +425,7 @@ msgstr "" "le multiplexage TCP doit également être activé sur le serveur.
Par " "défaut, cette valeur est vraie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -400,11 +433,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -414,7 +447,7 @@ msgstr "" "au serveur. Le serveur doit avoir un jeton correspondant pour que " "l'autorisation réussisse.
Par défaut, cette valeur est \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -422,7 +455,7 @@ msgstr "" "UseCompression contrôle si la communication avec le serveur sera compressée " "ou non.
Par défaut, cette valeur est false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -433,11 +466,11 @@ msgstr "" "configuration du serveur et du client.
Par défaut, cette valeur est " "fausse." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -448,9 +481,12 @@ msgstr "" "automatiquement modifiés en \"{user}.{Proxy_name}\".
Par défaut, cette " "valeur est \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/he/frpc.po b/applications/luci-app-frpc/po/he/frpc.po index 47cbfc6ac4..9422dbde17 100644 --- a/applications/luci-app-frpc/po/he/frpc.po +++ b/applications/luci-app-frpc/po/he/frpc.po @@ -4,75 +4,79 @@ 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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -80,21 +84,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -102,11 +106,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -114,11 +118,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -126,73 +130,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -203,63 +215,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -267,7 +295,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -283,14 +311,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -299,34 +331,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -334,50 +366,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 544b54643d..ed8288f1c7 100644 --- a/applications/luci-app-frpc/po/hi/frpc.po +++ b/applications/luci-app-frpc/po/hi/frpc.po @@ -4,75 +4,79 @@ 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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -80,21 +84,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -102,11 +106,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -114,11 +118,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -126,73 +130,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -203,63 +215,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -267,7 +295,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -283,14 +311,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -299,34 +331,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -334,50 +366,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 195718c7cc..06273a0fd6 100644 --- a/applications/luci-app-frpc/po/hu/frpc.po +++ b/applications/luci-app-frpc/po/hu/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Rendszergazda jelszó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Rendszergazda felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Adatgyűjtés..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "Tömörítés" @@ -86,21 +90,21 @@ msgstr "Tömörítés" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Színek kikapcsolása a naplóban" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Titkosítás" @@ -108,11 +112,11 @@ msgstr "Titkosítás" msgid "Environment variable" msgstr "Környezeti változó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Kikapcsolás, ha a belépés sikertelen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Általános Beállítások" @@ -120,11 +124,11 @@ msgstr "Általános Beállítások" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP beállítások" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP jelszó" @@ -132,73 +136,81 @@ msgstr "HTTP jelszó" msgid "HTTP proxy" msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Lokális IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Helyi port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "Naplózási szint" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NEM FUT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Szerep" @@ -289,14 +317,18 @@ msgstr "Démon futtatása felhasználóként" 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 "Kiszolgáló port" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 dea65a3af9..cfe2999354 100644 --- a/applications/luci-app-frpc/po/it/frpc.po +++ b/applications/luci-app-frpc/po/it/frpc.po @@ -10,75 +10,79 @@ msgstr "" "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:204 +msgid "Add new proxy..." +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configurazioni aggiuntive" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Attività dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -87,21 +91,21 @@ 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:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Crittografia" @@ -109,11 +113,11 @@ msgstr "Crittografia" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Impostazioni Generali" @@ -121,11 +125,11 @@ msgstr "Impostazioni Generali" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -133,73 +137,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -210,63 +222,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -274,7 +302,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -290,14 +318,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -306,34 +338,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -341,50 +373,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 caf50b7ee7..7e6433e05d 100644 --- a/applications/luci-app-frpc/po/ja/frpc.po +++ b/applications/luci-app-frpc/po/ja/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.3-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "圧縮" @@ -86,21 +90,21 @@ msgstr "圧縮" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "暗号化" @@ -108,11 +112,11 @@ msgstr "暗号化" msgid "Environment variable" msgstr "環境変数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "一般設定" @@ -120,11 +124,11 @@ msgstr "一般設定" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP 設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP パスワード" @@ -132,73 +136,81 @@ msgstr "HTTP パスワード" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP ユーザー" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "ローカル IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "ローカル・ポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "ログレベル" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "役割" @@ -289,14 +317,18 @@ msgstr "デーモンをユーザーとして実行" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 dee13b6f35..e520b41127 100644 --- a/applications/luci-app-frpc/po/ko/frpc.po +++ b/applications/luci-app-frpc/po/ko/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "기본 설정" @@ -120,11 +124,11 @@ msgstr "기본 설정" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/mr/frpc.po b/applications/luci-app-frpc/po/mr/frpc.po index 2f4344da30..63c4b6fe0d 100644 --- a/applications/luci-app-frpc/po/mr/frpc.po +++ b/applications/luci-app-frpc/po/mr/frpc.po @@ -10,75 +10,79 @@ 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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "सामान्य सेटिंग्ज" @@ -120,11 +124,11 @@ msgstr "सामान्य सेटिंग्ज" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 fd005903af..b4af9259f2 100644 --- a/applications/luci-app-frpc/po/ms/frpc.po +++ b/applications/luci-app-frpc/po/ms/frpc.po @@ -4,75 +4,79 @@ 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:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -80,21 +84,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -102,11 +106,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -114,11 +118,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -126,73 +130,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -203,63 +215,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -267,7 +295,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -283,14 +311,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -299,34 +331,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -334,50 +366,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 0a3ebdf3fa..7ca86144ea 100644 --- a/applications/luci-app-frpc/po/nb_NO/frpc.po +++ b/applications/luci-app-frpc/po/nb_NO/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.10.1\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Ytterligere oppsett" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Kryptering" @@ -108,11 +112,11 @@ msgstr "Kryptering" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Generelle innstillinger" @@ -120,11 +124,11 @@ msgstr "Generelle innstillinger" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "Kjør nisse som bruker" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Bruker" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 32bcd278b8..d42cf2127b 100644 --- a/applications/luci-app-frpc/po/pl/frpc.po +++ b/applications/luci-app-frpc/po/pl/frpc.po @@ -11,31 +11,35 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Administrator użytkownika" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -43,17 +47,17 @@ msgstr "" "AdminAddr określa adres, który serwer administracyjny łączy z adresem.
" "Domyślnie jest to wartość \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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. " "
Domyślnie ta wartość wynosi 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -61,7 +65,7 @@ msgstr "" "AdminPwd określa hasło, którego będzie używał serwer administracyjny do " "logowania.
Domyślnie ta wartość to \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -69,11 +73,11 @@ msgstr "" "AdminUser określa nazwę użytkownika, której serwer administracyjny będzie " "używał do logowania.
Domyślnie ta wartość to \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Katalog zasobów" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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 " @@ -81,17 +85,18 @@ msgid "" 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.
Domyślnie ta wartość to \"\"." +"pakietu wykonywalnego przy użyciu statik.
Domyślnie ta wartość to " +"\"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Zbieranie danych..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Wspólne ustawienia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Kompresja" @@ -99,15 +104,15 @@ msgstr "Kompresja" 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:54 +#: 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:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -115,7 +120,7 @@ msgstr "" "DisableLogColor wyłącza kolory dziennika, gdy LogWay == \"konsola\", jest " "ustawiona na true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Szyfrowanie" @@ -123,11 +128,11 @@ msgstr "Szyfrowanie" msgid "Environment variable" msgstr "Zmienna środowiskowa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Ustawienia główne" @@ -135,11 +140,11 @@ msgstr "Ustawienia główne" msgid "Grant access to LuCI app frpc" msgstr "Udziel dostępu LuCI do aplikacji frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Ustawienia HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Hasło HTTP" @@ -147,21 +152,21 @@ msgstr "Hasło HTTP" msgid "HTTP proxy" msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Użytkownik HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
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.
Domyślnie ta " -"wartość wynosi 30." +"serwera, w sekundach. Nie zaleca się zmiany tej wartości.
Domyślnie " +"ta wartość wynosi 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -171,59 +176,67 @@ msgstr "" "przed zakończeniem połączenia (w sekundach). Nie zaleca się zmiany tej " "wartości.
Domyślnie ta wartość wynosi 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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.
Domyślnie ta wartość " "jest odczytywana ze zmiennej środowiskowej \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Lokalny IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Port lokalny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: 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:25 +msgid "Log max days" +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Dziennik stderr" @@ -234,13 +247,28 @@ msgstr "Dziennik 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
By default, this value is \"info" +"\"." msgstr "" "LogLevel określa minimalny poziom dziennika. Poprawne wartości to \"trace\", " "\"debug\", \"info\", \"warn\" i \"error\".
Domyślnie jest to \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -250,14 +278,10 @@ msgstr "" "logowania. Jeśli jest ona nieprawdziwa, klient spróbuje ponownie, dopóki " "próba logowania nie zakończy się sukcesem.
Domyślnie wartość true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NIEURUCHOMIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -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:15 msgid "" "OS environments pass to frp for config file template, see frp README " -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -281,30 +305,35 @@ msgstr "" "wartości to \"tcp\", \"kcp\" i \"websocket\".
Domyślnie ta wartość to " "\"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Ustawienia proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
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\".
Domyślnie ta wartość to \"tcp" -"\"." +"\"http\", \"https\", \"stcp\" i \"xtcp\".
Domyślnie ta wartość to " +"\"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "URUCHOMIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Port zdalny" @@ -312,7 +341,7 @@ msgstr "Port zdalny" msgid "Respawn when crashed" msgstr "Odradzaj się po awarii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rola" @@ -328,17 +357,21 @@ msgstr "Uruchom daemona jako użytkownik" msgid "Server address" msgstr "Adres serwera" +#: 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 "Port serwera" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" -"ServerAddr określa adres serwera, z którymi chcesz się połączyć.
Domyśl " -"domyślnie ta wartość to \"0.0.0.0\"." +"ServerAddr określa adres serwera, z którymi chcesz się połączyć.
Domyśl domyślnie ta wartość to \"0.0.0.0\"." #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" @@ -348,28 +381,28 @@ msgstr "" "ServerPort określa port do połączenia z serwerem on.
Domyślnie wartość " "ta wynosi 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Ustawienia uruchamiania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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." @@ -377,7 +410,7 @@ 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:31 +#: 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 " @@ -389,7 +422,7 @@ msgstr "" "prawdą, serwer musi również mieć włączone multipleksowanie TCP.
" "Domyślnie ta wartość to true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -397,11 +430,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -411,7 +444,7 @@ msgstr "" "zostać wysłane na serwer. Serwer musi mieć pasujący token, aby autoryzacja " "zakończyła się powodzeniem.
Domyślnie ta wartość to \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -419,7 +452,7 @@ msgstr "" "UseCompression kontroluje, czy komunikacja z serwerem będzie kompresowana. " "
Domyślnie ta wartość to false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -429,11 +462,11 @@ msgstr "" "Szyfrowanie odbywa się przy użyciu tokenów dostarczonych w konfiguracji " "serwera i klienta.
Domyślnie ta wartość to false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -444,12 +477,15 @@ msgstr "" "automatycznie zmienione na \"{user}. {proxy_name}\".
W razie domyślnie " "ta wartość to \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 9f90d75776..fc4c17ecbd 100644 --- a/applications/luci-app-frpc/po/pt/frpc.po +++ b/applications/luci-app-frpc/po/pt/frpc.po @@ -10,49 +10,53 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -"AdminAddr especifica o endereço para o qual o servidor admin se liga.
Por " -"padrão, este valor é \"127.0.0.1\"." +"AdminAddr especifica o endereço para o qual o servidor admin se liga.
Por padrão, este valor é \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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.
Por padrão, este " "valor é 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -60,7 +64,7 @@ msgstr "" "AdminPwd especifica a palavra-passe que o servidor admin usará para login." "
Por padrão, este valor é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -68,11 +72,11 @@ msgstr "" "AdminUser especifica o nome de utilizador que o servidor admin usará para " "login.
Por padrão, este valor é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -82,15 +86,15 @@ msgstr "" "Se o valor for \"\", os ativos serão carregados do que estiver embutido no " "executável usando o statik.
O valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "A coletar dados..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compressão" @@ -99,15 +103,15 @@ 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:54 +#: 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:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -115,7 +119,7 @@ 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Encriptação" @@ -123,11 +127,11 @@ msgstr "Encriptação" msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Configurações gerais" @@ -135,11 +139,11 @@ msgstr "Configurações gerais" msgid "Grant access to LuCI app frpc" msgstr "Conceder acesso à app LuCI frps" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Configurações HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Palavra-passe HTTP" @@ -147,11 +151,11 @@ msgstr "Palavra-passe HTTP" msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Utilizador HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -161,7 +165,7 @@ msgstr "" "o servidor em segundos. Não é recomendável alterar este valor.
O valor " "predefinido é 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -171,58 +175,66 @@ msgstr "" "heartbeat antes que a conexão seja encerrada, em segundos. Não é " "recomendável alterar esse valor.
O valor predefinido é 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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.
O " "valor predefinido desse valor é lido da variável do ambiente \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: 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:25 +msgid "Log max days" +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Regisro do stderr" @@ -233,14 +245,29 @@ msgstr "Registo do 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
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\".
O valor predefinido é " "\"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -250,14 +277,10 @@ msgstr "" "tentativa de login. Se falso, o cliente tentará novamente até que uma " "tentativa de login seja bem sucedida.
O valor predefinido é true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NÃO EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -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:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -281,30 +304,35 @@ msgstr "" "Os valores válidos são \"tcp\", \"kcp\" e \"websocket\".
O valor " "predefinido é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Configurações de Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
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\".
O valor predefinido é " -"\"tcp\"." +"\"udp\", \"http\", \"https\", \"stcp\", e \"xtcp\".
O valor predefinido " +"é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "EXECUTADO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Porta remota" @@ -312,7 +340,7 @@ msgstr "Porta remota" msgid "Respawn when crashed" msgstr "Reiniciar caso travado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Função" @@ -328,17 +356,21 @@ msgstr "Executar serviço como utilizador" msgid "Server address" msgstr "Endereço do servidor" +#: 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 "Porta do servidor" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" -"ServerAddr especifica o endereço do servidor ao qual se conectar.
O valor " -"predefinido é \"0.0.0.0\"." +"ServerAddr especifica o endereço do servidor ao qual se conectar.
O " +"valor predefinido é \"0.0.0.0\"." #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" @@ -348,28 +380,28 @@ msgstr "" "ServerPort especifica a porta ao qual se conectar no servidor.
O valor " "predefinido é 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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." @@ -377,7 +409,7 @@ 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:31 +#: 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 " @@ -389,7 +421,7 @@ msgstr "" "for true, o servidor deve ter multiplexing TCP ativado também.
O valor " "predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -397,11 +429,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -411,7 +443,7 @@ msgstr "" "enviadas para o servidor. O servidor deve ter um token correspondente para a " "autorização ter sucesso. O valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -419,7 +451,7 @@ msgstr "" "UseCompression controla se a comunicação com o servidor será compactada ou " "não.
O valor predefinido é false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -429,11 +461,11 @@ msgstr "" "não. A criptografia é feita a usar os tokens fornecidos na configuração do " "servidor e do cliente.
O valor predefinido é false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -444,9 +476,12 @@ msgstr "" "automaticamente alterados para \"{utilizador}. {nome_do_proxy}\".
O " "valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 fafe2c8726..9017015c85 100644 --- a/applications/luci-app-frpc/po/pt_BR/frpc.po +++ b/applications/luci-app-frpc/po/pt_BR/frpc.po @@ -10,31 +10,35 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7.2-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -42,17 +46,17 @@ msgstr "" "AdminAddr determina o endereço a ser vinculado para uso do administrador do " "servidor.
O valor predefinido é \"127.0.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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.
O valor " "predefinido é 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -60,7 +64,7 @@ msgstr "" "AdminPwd determina a senha de login que será usado para o administrador do " "servidor.
O valor predefinido é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -68,11 +72,11 @@ msgstr "" "AdminUser determina o nome de login do usuário que será usado pelo " "administrador do servidor.
O valor predefinido é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -80,18 +84,18 @@ msgid "" 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.
O valor " -"predefinido é \"\"." +"carregados do que estiver embutido no executável usando o statik.
O " +"valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Coletando dados ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compressão" @@ -100,15 +104,15 @@ 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:54 +#: 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:24 +#: 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:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -116,7 +120,7 @@ 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Criptografia" @@ -124,11 +128,11 @@ msgstr "Criptografia" msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Configurações gerais" @@ -136,11 +140,11 @@ msgstr "Configurações gerais" 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:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Configurações HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Senha HTTP" @@ -148,11 +152,11 @@ msgstr "Senha HTTP" msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Usuário HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -162,7 +166,7 @@ msgstr "" "para o servidor em segundos. Não é recomendável alterar este valor.
O " "valor predefinido é 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -172,59 +176,67 @@ msgstr "" "heartbeat antes que a conexão seja encerrada em segundos. Não é recomendável " "alterar este valor.
O valor predefinido é 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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.
O valor predefinido é " "lido a partir da variável \"http_proxy\" do ambiente." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "IP Local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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:23 +msgid "Log file" +msgstr "" + +#: 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:25 +msgid "Log max days" +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Registro log do stderr" @@ -235,14 +247,29 @@ msgstr "Registro log do 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
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\".
O valor " "predefinido é \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -252,14 +279,10 @@ msgstr "" "login fracassada. Se falso, o cliente tentará novamente até que uma " "tentativa de login seja bem sucedida.
O valor predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NÃO ESTÁ EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -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:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -283,30 +306,35 @@ msgstr "" "Os valores válidos são \"tcp\", \"kcp\" e \"websocket\".
O valor " "predefinido é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Configurações de Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
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\".
O valor predefinido é " -"\"tcp\"." +"\"udp\", \"http\", \"https\", \"stcp\" e \"xtcp\".
O valor predefinido " +"é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Porta remota" @@ -314,7 +342,7 @@ msgstr "Porta remota" msgid "Respawn when crashed" msgstr "Reiniciar caso entre em colapso" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Papel" @@ -330,14 +358,18 @@ msgstr "Executar serviço como usuário" msgid "Server address" msgstr "Endereço do servidor" +#: 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 "Porta do servidor" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" "ServerAddr determina o endereço do servidor para se conectar.
O valor " "predefinido é \"0,0.0.0\"." @@ -350,28 +382,28 @@ msgstr "" "O ServerPort determina a porta para se conectar ao servidor.
O valor " "predefinido é 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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." @@ -379,7 +411,7 @@ 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:31 +#: 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 " @@ -388,10 +420,10 @@ msgid "" 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. " -"
O valor predefinido é verdadeiro." +"for verdadeiro, o servidor também deve ter a multiplexação TCP ativada.
O valor predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -399,11 +431,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -413,7 +445,7 @@ msgstr "" "enviadas ao servidor. O servidor deve ter um token correspondente para que a " "autorização seja bem sucedida.
O valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -421,7 +453,7 @@ msgstr "" "UseCompression controla se a comunicação com o servidor será compactada ou " "não.
O valor predefinido é falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -431,11 +463,11 @@ msgstr "" "não. A criptografia é feita usando os tokens fornecidos na configuração do " "servidor e do cliente.
O valor predefinido é falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -446,9 +478,12 @@ msgstr "" "automaticamente alterados para \"{user}. {proxy_name}\".
O valor " "predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 334f43f96f..4670889580 100644 --- a/applications/luci-app-frpc/po/ro/frpc.po +++ b/applications/luci-app-frpc/po/ro/frpc.po @@ -11,31 +11,35 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.10-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: 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:38 +#: 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:26 +#: 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:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Parola de administrator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Port administrativ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Utilizator administrator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -43,7 +47,7 @@ msgstr "" "AdminAddr specifică adresa la care se leagă serverul de administrare.
În mod implicit, această valoare este \"127.0.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this " @@ -53,7 +57,7 @@ msgstr "" "asculte. Dacă această valoare este 0, serverul de administrare nu va fi " "pornit.
În mod implicit, această valoare este 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -61,7 +65,7 @@ msgstr "" "AdminPwd specifică parola pe care serverul de administrare o va utiliza " "pentru autentificare.
Din mod implicit, această valoare este \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -70,11 +74,11 @@ msgstr "" "va utiliza pentru autentificare.
În mod implicit, această valoare este " "\"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -85,15 +89,15 @@ msgstr "" "încărcate din executabilul inclus în pachet, utilizând statik.
Din mod " "implicit, această valoare este \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Colectarea datelor ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Setări comune" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Comprimare" @@ -101,15 +105,15 @@ msgstr "Comprimare" msgid "Config files include in temporary config file" msgstr "Fișiere de configurare incluse în fișierul de configurare temporar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Domenii personalizate" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Dezactivați culoarea jurnalului" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -117,7 +121,7 @@ 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Criptare" @@ -125,11 +129,11 @@ msgstr "Criptare" msgid "Environment variable" msgstr "Variabila de mediu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Paritate" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Setări generale" @@ -137,11 +141,11 @@ msgstr "Setări generale" msgid "Grant access to LuCI app frpc" msgstr "Acordă acces la aplicația LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Setări HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Parola HTTP" @@ -149,11 +153,11 @@ msgstr "Parola HTTP" msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Utilizator HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -163,25 +167,25 @@ msgstr "" "inimii către server, în secunde. Nu este recomandat să modificați această " "valoare.
În mod implicit, această valoare este 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
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.
În mod implicit, această valoare este 90." +"înainte de a încheia conexiunea. Nu se recomandă modificarea acestei valori." +"
În mod implicit, această valoare este 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Intervalul bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Timpul limită a bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Rescrierea antetului gazdă" @@ -195,38 +199,46 @@ msgstr "" "Dacă această valoare este \"\", serverul va fi conectat direct.
În mod " "implicit, această valoare este citită din variabila de mediu \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Port local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort specifică portul la care se face proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Locații" #: 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 "Nivel de jurnal" +#: 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 "Jurnal stderr" @@ -237,6 +249,13 @@ 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.
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\".
By default, this value is \"info" "\"." @@ -245,7 +264,14 @@ msgstr "" "\"trace\", \"debug\", \"info\", \"warn\" și \"error\".
Prin definiție, " "această valoare este \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -256,14 +282,10 @@ msgstr "" "până când o încercare de autentificare reușește.
Din mod implicit, " "această valoare este adevărată." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "NU FUNCȚIONEAZĂ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "Numele nu poate fi \"comun\"" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -287,16 +309,21 @@ msgstr "" "serverul. Valorile valide sunt \"tcp\", \"kcp\" și \"websocket\".
Prin " "definiție, această valoare este \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Setări Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Tipul de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " @@ -306,11 +333,11 @@ msgstr "" "\"udp\", \"http\", \"https\", \"stcp\" și \"xtcp\".
Prin definiție, " "această valoare este \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "RULARE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Port la distanță" @@ -318,7 +345,7 @@ msgstr "Port la distanță" msgid "Respawn when crashed" msgstr "Respawn când crapă" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rol" @@ -334,6 +361,10 @@ msgstr "Rulați daemonul ca utilizator" msgid "Server address" msgstr "Adresa serverului" +#: 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 "Port de server" @@ -354,28 +385,28 @@ msgstr "" "ServerPort specifică portul de conectare la server.
În mod implicit, " "această valoare este 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Setări de pornire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdomeniu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: 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:35 +#: 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:35 +#: 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." @@ -383,7 +414,7 @@ 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:31 +#: 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 " @@ -395,7 +426,7 @@ msgstr "" "valoare este adevărată, serverul trebuie să aibă activată și multiplexarea " "TCP.
În mod implicit, această valoare este adevărată." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -403,11 +434,11 @@ 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:25 +#: 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:25 +#: 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 " @@ -418,7 +449,7 @@ msgstr "" "corespunzător pentru ca autorizarea să reușească.
În mod implicit, " "această valoare este \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -426,7 +457,7 @@ msgstr "" "UseCompression controlează dacă comunicarea cu serverul va fi sau nu " "comprimată.
În mod implicit, această valoare este falsă." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -437,11 +468,11 @@ msgstr "" "configurația serverului și a clientului.
În mod implicit, această " "valoare este falsă." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Utilizator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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 " @@ -452,9 +483,12 @@ msgstr "" "schimbat automat în \"{utilizator}.{nume_proxy}\".
În mod implicit, " "această valoare este \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" 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 9ff77ff113..ebd36bc191 100644 --- a/applications/luci-app-frpc/po/ru/frpc.po +++ b/applications/luci-app-frpc/po/ru/frpc.po @@ -11,75 +11,79 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.9-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "Компрессия" @@ -87,21 +91,21 @@ msgstr "Компрессия" msgid "Config files include in temporary config file" msgstr "Конфигурационные настройки записаны во временный конфигурационный файл" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Шифрование" @@ -109,11 +113,11 @@ msgstr "Шифрование" msgid "Environment variable" msgstr "Переменные окружения" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Общие настройки" @@ -121,11 +125,11 @@ msgstr "Общие настройки" msgid "Grant access to LuCI app frpc" msgstr "Предоставить доступ LuCI к приложению frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Настройки HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Пароль HTTP" @@ -133,73 +137,81 @@ msgstr "Пароль HTTP" msgid "HTTP proxy" msgstr "HTTP прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP пользователь" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Локальный IP-адрес" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Локальный порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "Уровень журналирования" +#: 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 "" @@ -210,63 +222,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Тип прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Удаленный порт" @@ -274,7 +302,7 @@ msgstr "Удаленный порт" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -290,14 +318,18 @@ msgstr "Запуск демона от имени пользователя" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -306,34 +338,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -341,50 +373,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/sk/frpc.po b/applications/luci-app-frpc/po/sk/frpc.po index a50f66840e..f9d676dc9d 100644 --- a/applications/luci-app-frpc/po/sk/frpc.po +++ b/applications/luci-app-frpc/po/sk/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Šifrovanie" @@ -108,11 +112,11 @@ msgstr "Šifrovanie" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -120,11 +124,11 @@ msgstr "Všeobecné nastavenia" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 fee2070b25..8039af2289 100644 --- a/applications/luci-app-frpc/po/sv/frpc.po +++ b/applications/luci-app-frpc/po/sv/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.10-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Lösenord 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:29 msgid "Admin port" msgstr "Port för admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Admin-användare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Samlar in data ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Vanliga inställningar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Kompression" @@ -86,21 +90,21 @@ msgstr "Kompression" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Anpassade domäner" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Inaktivera logg-färg" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Kryptering" @@ -108,11 +112,11 @@ msgstr "Kryptering" msgid "Environment variable" msgstr "Miljövariabel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Avsluta när inloggningen misslyckas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Generella inställningar" @@ -120,11 +124,11 @@ msgstr "Generella inställningar" msgid "Grant access to LuCI app frpc" msgstr "Godkänn åtkomst till LuCi-appen frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Inställningar för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Lösenord för HTTP" @@ -132,74 +136,82 @@ msgstr "Lösenord för HTTP" msgid "HTTP proxy" msgstr "Proxy för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Användare för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Hjärtslagsintervall" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Lokal IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Lokal port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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: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:11 msgid "Log stderr" msgstr "Logga stderr" @@ -210,63 +222,79 @@ msgstr "Logga stdout" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "KÖRS INTE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "Namnet kan inte vara \"vanligt\"" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Inställningar för proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Typ av proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "KÖRS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Fjärrport" @@ -274,7 +302,7 @@ msgstr "Fjärrport" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Roll" @@ -290,14 +318,18 @@ msgstr "Kör daemon som användare" 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: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.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -306,34 +338,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Inställningar för uppstart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Underdomän" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -341,50 +373,53 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Användare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" 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 2256ab311e..87e72ffe71 100644 --- a/applications/luci-app-frpc/po/templates/frpc.pot +++ b/applications/luci-app-frpc/po/templates/frpc.pot @@ -1,75 +1,79 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this " "value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -77,21 +81,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -99,11 +103,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -111,11 +115,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -123,33 +127,33 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" @@ -160,36 +164,44 @@ msgid "" "default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -200,64 +212,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -265,7 +292,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -281,6 +308,10 @@ msgstr "" 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 "" @@ -297,34 +328,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -332,50 +363,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 1911ad4340..2f0d22b593 100644 --- a/applications/luci-app-frpc/po/tr/frpc.po +++ b/applications/luci-app-frpc/po/tr/frpc.po @@ -10,31 +10,35 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Ek yapılandırmalar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:26 +#: 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:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Yönetici şifresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Yönetici bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Yönetici kullanıcı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." @@ -42,17 +46,17 @@ msgstr "" "AdminAddr, yönetici sunucusunun bağlandığı adresi belirtir.
Varsayılan " "olarak bu değer \"127.0.0.1\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
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.
Varsayılan olarak bu " "değer 0'dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." @@ -60,7 +64,7 @@ msgstr "" "AdminPwd, yönetici sunucusunun oturum açmak için kullanacağı parolayı " "belirtir.
Varsayılan olarak bu değer \"admin\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." @@ -68,11 +72,11 @@ msgstr "" "AdminUser, yönetici sunucusunun oturum açma için kullanacağı kullanıcı adını " "belirtir.
Varsayılan olarak bu değer \"admin\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Varlıklar dizini" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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 " @@ -83,15 +87,15 @@ msgstr "" "yürütülebilir dosyadan yüklenecektir.
Varsayılan olarak bu değer \"\" " "şeklindedir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "Veriler toplanıyor ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common Settings" msgstr "Genel Ayarlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Sıkıştırma" @@ -99,15 +103,15 @@ msgstr "Sıkıştırma" msgid "Config files include in temporary config file" 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:54 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Özel alanlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Günlük renklerini devre dışı bırak" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -115,7 +119,7 @@ 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Şifreleme" @@ -123,11 +127,11 @@ msgstr "Şifreleme" msgid "Environment variable" msgstr "Çevre değişkeni" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Giriş başarısız olduğunda çık" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Genel Ayarlar" @@ -135,11 +139,11 @@ msgstr "Genel Ayarlar" msgid "Grant access to LuCI app frpc" msgstr "LuCI uygulaması frpc'ye erişim izni verin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP şifresi" @@ -147,11 +151,11 @@ msgstr "HTTP şifresi" msgid "HTTP proxy" msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP kullanıcısı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -161,7 +165,7 @@ msgstr "" "cinsinden belirtir. Bu değerin değiştirilmesi önerilmez.
Varsayılan " "olarak bu değer 30'dur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -171,59 +175,67 @@ msgstr "" "atışı yanıt gecikmesini saniye cinsinden belirtir. Bu değerin değiştirilmesi " "önerilmez.
Varsayılan olarak bu değer 90'dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Heartbeat aralığı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Heartbeat zaman aşımı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Ana bilgisayar üstbilgisini yeniden yazma" #: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
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.
Varsayılan olarak, bu değer " "\"http_proxy\" ortam değişkeninden okunur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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 ise, frps sizin için rastgele bir bağlantı noktası atar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "Yerel IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "Yerel bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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 yapılacak IP adresini veya ana bilgisayar adını belirtir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort, proxy yapılacak bağlantı noktasını belirtir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Konumlar" #: 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 "Günlük seviyesi" +#: 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 "Stderr'i günlüğe kaydet" @@ -234,14 +246,29 @@ 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
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.
Varsayılan olarak bu " "değer \"info\" dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -252,14 +279,10 @@ msgstr "" "girişimi olana kadar yeniden deneyecektir.
Varsayılan olarak bu değer " "doğrudur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "ÇALIŞMIYOR" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "İsim \"common\" olamaz" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
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." -"
Varsayılan olarak bu değer \"tcp\" dir." +"belirtir. Geçerli değerler \"tcp\", \"kcp\" ve \"websocket\" dir.
Varsayılan olarak bu değer \"tcp\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy Settings" msgstr "Vekil sunucu Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "Proxy türü" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " @@ -302,11 +330,11 @@ msgstr "" "\"udp\", \"http\", \"https\", \"stcp\" ve \"xtcp\" bulunur.
Varsayılan " "olarak bu değer \"tcp\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "ÇALIŞIYOR" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "Uzak bağlantı noktası" @@ -314,7 +342,7 @@ msgstr "Uzak bağlantı noktası" msgid "Respawn when crashed" msgstr "Çöktüğünde yeniden çıkart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rol" @@ -330,48 +358,52 @@ msgstr "Arka plan programı kullanıcı olarak çalıştır" msgid "Server address" msgstr "Sunucu adresi" +#: 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 "Sunucu bağlantı noktası" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" -"ServerAddr bağlanılacak sunucunun adresini belirtir.
Varsayılan olarak bu " -"değer \"0.0.0.0\" dır." +"ServerAddr bağlanılacak sunucunun adresini belirtir.
Varsayılan olarak " +"bu değer \"0.0.0.0\" dır." #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" "ServerPort specifies the port to connect to the server on.
By default, " "this value is 7000." msgstr "" -"ServerPort, sunucuya bağlanılacak bağlantı noktasını belirtir.
Varsayılan " -"olarak bu değer 7000'dir." +"ServerPort, sunucuya bağlanılacak bağlantı noktasını belirtir.
Varsayılan olarak bu değer 7000'dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "Başlangıç Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Alt alan adı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: 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:35 +#: 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:35 +#: 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." @@ -379,7 +411,7 @@ 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:31 +#: 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 " @@ -388,10 +420,10 @@ msgid "" 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.
Varsayılan olarak bu " -"değer doğrudur." +"sunucuda da TCP çoklama etkinleştirilmiş olmalıdır.
Varsayılan olarak " +"bu değer doğrudur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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." @@ -399,11 +431,11 @@ 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:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Jeton" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: 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 " @@ -414,7 +446,7 @@ msgstr "" "sunucunun eşleşen bir jetona sahip olması gerekir.
Varsayılan olarak bu " "değer \"\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." @@ -422,7 +454,7 @@ msgstr "" "UseCompression, sunucuyla iletişimin sıkıştırılıp sıkıştırılmayacağını " "denetler.
Varsayılan olarak bu değer yanlıştır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -432,11 +464,11 @@ msgstr "" "eder. Şifreleme, sunucu ve istemci yapılandırmasında sağlanan belirteçler " "kullanılarak yapılır.
Varsayılan olarak bu değer yanlıştır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Kullanıcı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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 " @@ -444,12 +476,15 @@ msgid "" 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.
Varsayılan olarak bu değer \"\" " -"şeklindedir." +"{Proxy_name}\" olarak değiştirilecektir.
Varsayılan olarak bu değer " +"\"\" şeklindedir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" 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 ca01f89888..2331cc9b12 100644 --- a/applications/luci-app-frpc/po/uk/frpc.po +++ b/applications/luci-app-frpc/po/uk/frpc.po @@ -11,80 +11,84 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.12-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -"AdminAddr встановлює адресу до якої підключається сервер адміністратора." -"
За замовчуванням, це значення - \"127.0.0.1\"." +"AdminAddr встановлює адресу до якої підключається сервер адміністратора.
За замовчуванням, це значення - \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" "AdminPort встановлює порт який буде прослуховуватися сервером " "адміністратора. Якщо вказано значення 0, сервер адміністратора не буде " "запущений.
За замовчуванням, це значення - 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -92,21 +96,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Шифрування" @@ -114,11 +118,11 @@ msgstr "Шифрування" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "Загальні налаштування" @@ -126,11 +130,11 @@ msgstr "Загальні налаштування" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "Налаштування HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "Пароль HTTP" @@ -138,73 +142,81 @@ msgstr "Пароль HTTP" msgid "HTTP proxy" msgstr "Проксі HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "Користувач HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -215,63 +227,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -279,7 +307,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Роль" @@ -295,14 +323,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -311,34 +343,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -346,50 +378,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 73b84eba98..c3486ad496 100644 --- a/applications/luci-app-frpc/po/vi/frpc.po +++ b/applications/luci-app-frpc/po/vi/frpc.po @@ -10,75 +10,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +msgid "Add new proxy..." +msgstr "" + #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Cấu hình thêm" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "" @@ -86,21 +90,21 @@ msgstr "" msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" @@ -108,11 +112,11 @@ msgstr "" msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "" @@ -120,11 +124,11 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "" @@ -132,73 +136,81 @@ msgstr "" msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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.
By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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:46 +#: 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:59 +#: 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 "" +#: 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 "" @@ -209,63 +221,79 @@ msgstr "" #: 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\".
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.
By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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\".
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.
By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Giao thức" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "" @@ -273,7 +301,7 @@ msgstr "" msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" @@ -289,14 +317,18 @@ msgstr "" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 @@ -305,34 +337,34 @@ msgid "" "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -340,50 +372,50 @@ msgid "" "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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.
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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.
By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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}\".
By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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/zh_Hans/frpc.po b/applications/luci-app-frpc/po/zh_Hans/frpc.po index 527f7094ef..6e77e694bd 100644 --- a/applications/luci-app-frpc/po/zh_Hans/frpc.po +++ b/applications/luci-app-frpc/po/zh_Hans/frpc.po @@ -10,64 +10,68 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.7.2-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." msgstr "AdminAddr 特指用于绑定管理服务器的地址。
默认是\"127.0.0.1\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: 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.
By default, this value " -"is 0." +"value is 0, the admin server will not be started.
By default, this " +"value is 0." msgstr "" "AdminPort 用于指定管理服务器要侦听的端口。如果此值为0,则不会启动管理服务器。" "
默认情况下,此值为0。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: 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." "
By default, this value is \"admin\"." msgstr "" "AdminPwd 指定管理服务器用于登录的密码。
默认情况下,此值为\"admin\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" "AdminUser 指定管理服务器用于登录的用户名。
默认情况下,此值为\"admin\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -76,15 +80,15 @@ msgstr "" "AssetsDir指定管理服务器用于加载资源的本地目录。如果此值为空,则使用statik从可" "执行文件中加载资源。
默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "收集数据中 ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "压缩" @@ -92,21 +96,21 @@ msgstr "压缩" msgid "Config files include in temporary config file" msgstr "配置文件包含在临时配置文件中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "加密" @@ -114,11 +118,11 @@ msgstr "加密" msgid "Environment variable" msgstr "环境变量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "常规设置" @@ -126,11 +130,11 @@ msgstr "常规设置" msgid "Grant access to LuCI app frpc" msgstr "授予访问 LuCI 应用 frpc 的权限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP 设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP 密码" @@ -138,11 +142,11 @@ msgstr "HTTP 密码" msgid "HTTP proxy" msgstr "HTTP 代理" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP 用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " @@ -151,7 +155,7 @@ msgstr "" "HeartBeatInterval 用于指定向服务器发送心跳包的间隔(以秒为单位)。不建议更改" "此值。
默认情况下,此值为 30。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -160,57 +164,65 @@ msgstr "" "HeartBeatTimeout 用于指定多久未收到心跳包后断开连接(以秒为单位)。不建议更改" "此值。
默认情况下,此值为 90。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。
" -"默认情况下,从\"http_proxy\"环境变量中读取此值。" +"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。
默认情况下,从\"http_proxy\"环境变量中读取此值。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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 将为您随机分配一个端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "监听端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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 地址或主机名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort 指定要被代理的端口。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: 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 "日志记录等级" +#: 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 "错误日志" @@ -221,13 +233,28 @@ 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
By default, this value is \"info" +"\"." msgstr "" "LogLevel 指定最小的日志级别。有效值为\"trace\", \"debug\", \"info\", \"warn" "\"和\"error\"。
默认情况下,此值为\"info\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -236,14 +263,10 @@ msgstr "" "LoginFailExit 控制客户端在尝试登录失败后是否应退出。如果为 false,客户端将重" "试,直到登录成功。
默认情况下,此值为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "未在运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "名称不能\"common\"" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp文档" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -265,16 +288,21 @@ msgstr "" "Protocol 指定在与服务器交互时要使用的协议。有效值为\"tcp\"、\"kcp\"和" "\"websocket\"。
默认情况下,此值为\"tcp\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "代理类型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " @@ -283,11 +311,11 @@ msgstr "" "ProxyType 指定此代理的类型。有效值包括\"tcp\"、\"udp\"、\"http\"、\"https" "\"、\"stcp\"和\"xtcp\"。
默认情况下,此值为\"tcp\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "运行中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "远程端口" @@ -295,7 +323,7 @@ msgstr "远程端口" msgid "Respawn when crashed" msgstr "崩溃时重启" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "角色" @@ -311,14 +339,18 @@ msgstr "以此用户权限运行" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." msgstr "" "ServerAddr 指定要连接到的服务器的地址。
默认情况下,此值为\"0.0.0.0\"。" @@ -328,34 +360,34 @@ msgid "" "this value is 7000." msgstr "ServerPort 指定要连接到的服务器端口。
默认情况下,此值为 7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "启动设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -365,17 +397,17 @@ msgstr "" "TcpMux 切换 TCP 流多路复用。这允许来自客户端的多个请求共享单个 TCP 连接。如果" "此值为 true,则服务器必须启用 TCP 多路复用。
默认情况下,此值为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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 " @@ -384,14 +416,14 @@ msgstr "" "Token 指定用于创建要发送到服务器的密钥的授权令牌。服务器必须具有匹配的令牌才" "能成功进行授权。
默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" "UseCompression 控制是否压缩与服务器的通信。
默认情况下,此值为 false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -400,11 +432,11 @@ msgstr "" "UseEncryption 控制是否加密与服务器的通信。使用服务器和客户端配置中提供的令牌" "来完成加密。
默认情况下,此值为 false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -413,9 +445,12 @@ msgstr "" "User 为代理名称指定前缀,以将它们与其他客户端区分开来。如果此值不为空,则代理" "名称将自动更改为\"{user}.{proxy_name}\"。
默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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 d59acb634d..7bdec14c50 100644 --- a/applications/luci-app-frpc/po/zh_Hant/frpc.po +++ b/applications/luci-app-frpc/po/zh_Hant/frpc.po @@ -10,63 +10,68 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 +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:38 +#: 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:26 +#: 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:29 +#: 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:27 +#: 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:28 +#: 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:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" "AdminAddr specifies the address that the admin server binds to.
By " "default, this value is \"127.0.0.1\"." -msgstr "AdminAddr指定管理伺服器綁定到的位址.
預設況下, 此值為“127.0.0.1”." - -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 -msgid "" -"AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.
By default, this value " -"is 0." msgstr "" -"AdminPort指定管理伺服器監聽的埠號. 如果此值為0, 則不會啟動管理伺服器.
預" -"設情況下, 此值為0." +"AdminAddr指定管理伺服器綁定到的位址.
預設況下, 此值為“127.0.0.1”." #: 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.
By default, this " +"value is 0." +msgstr "" +"AdminPort指定管理伺服器監聽的埠號. 如果此值為0, 則不會啟動管理伺服器.
" +"預設情況下, 此值為0." + +#: 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." "
By default, this value is \"admin\"." msgstr "AdminPwd指定管理伺服器用於登錄的密碼.
預設情況下, 此值為“admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: 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." "
By default, this value is \"admin\"." msgstr "" "AdminUser指定管理伺服器用於登錄的用戶名稱.
預設情況下, 此值為“admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: 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:30 +#: 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 " @@ -75,15 +80,15 @@ msgstr "" "AssetsDir指定管理伺服器將從中加載資源的本地目錄. 如果此值為“”, 將使用statik從" "捆綁的可執行文件中加載資產.
預設情況下, 此值為“”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:180 msgid "Collecting data ..." msgstr "收集資料中 ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 msgid "Common 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:47 msgid "Compression" msgstr "壓縮" @@ -91,21 +96,21 @@ msgstr "壓縮" msgid "Config files include in temporary config file" msgstr "設定檔包含在臨時設定檔案中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:54 +#: 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:24 +#: 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:24 +#: 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 "當LogWay ==“ console”設置為true時, DisableLogColor禁用日誌顏色." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "加密(Encryption)" @@ -113,11 +118,11 @@ msgstr "加密(Encryption)" msgid "Environment variable" msgstr "環境變數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "General Settings" msgstr "一般設定" @@ -125,11 +130,11 @@ msgstr "一般設定" msgid "Grant access to LuCI app frpc" msgstr "授予 luci-app-frpc 擁有存取的權限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:209 msgid "HTTP Settings" msgstr "HTTP設定植" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:61 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 msgid "HTTP password" msgstr "HTTP密碼" @@ -137,20 +142,20 @@ msgstr "HTTP密碼" msgid "HTTP proxy" msgstr "HTTP代理" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 msgid "HTTP user" msgstr "HTTP用戶" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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.
By " "default, this value is 30." msgstr "" -"HeartBeatInterval以秒為單位指定將心跳發送到伺服器的間隔. 不建議更改此值.
" -"預設情況下, 此值為30." +"HeartBeatInterval以秒為單位指定將心跳發送到伺服器的間隔. 不建議更改此值. " +"
預設情況下, 此值為30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +#: 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 " @@ -159,57 +164,65 @@ msgstr "" "HeartBeatTimeout指定終止連接之前允許的最大心跳響應延遲, 以秒為單位. 不建議更" "改此值.
預設情況下, 此值為90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: 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:37 +#: 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:62 +#: 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.
By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.
By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "HttpProxy指定通過其連接到伺服器的代理位址. 如果此值為“”, 則伺服器將直接連接. " "
預設情況下, 將從環境變量“http_proxy”中讀取此值." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: 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將為您分配一個隨機埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 msgid "Local IP" msgstr "本地IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:206 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 msgid "Local port" msgstr "本地埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: 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位址或主機名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort指定要代理的埠號。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: 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 "日誌級別" +#: 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 "日誌標準錯誤" @@ -220,13 +233,28 @@ 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.
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\".
By default, this value is \"info\"." +"\", \"info\", \"warn\", and \"error\".
By default, this value is \"info" +"\"." msgstr "" "LogLevel指定最低日誌級別. 有效值為“trace”, “debug”, “ info”, “warn”, " "和“error”.
預設情況下, 此值為“info”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: 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\".
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 " @@ -235,14 +263,10 @@ msgstr "" "LoginFailExit控制在嘗試登錄失敗後客戶端是否應退出。如果為false,則客戶端將重" "試,直到成功登錄為止。
預設情況下,此值為true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 msgid "NOT RUNNING" msgstr "未執行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 -msgid "Name can not be \"common\"" -msgstr "名稱不能為“common”" - #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see frp README" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: 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:34 +#: 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\".
By default, this " @@ -264,16 +288,21 @@ msgstr "" "Protocol指定與伺服器交互時要使用的協定。有效值為“ tcp”,“ kcp”和“ " "websocket”。
預設情況下,此值為“ tcp”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Proxy 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:204 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 +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:212 msgid "Proxy type" msgstr "代理類型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: 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\".
By default, this " @@ -282,11 +311,11 @@ msgstr "" "ProxyType指定此代理的類型。有效值包括“ tcp”,“ udp”,“ http”,“ https”,“ " "stcp”和“ xtcp”。
預設情況下,此值為“ tcp”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 msgid "RUNNING" msgstr "執行中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "Remote port" msgstr "遠端埠號" @@ -294,7 +323,7 @@ msgstr "遠端埠號" msgid "Respawn when crashed" msgstr "崩潰時重生" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:67 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "角色" @@ -310,15 +339,20 @@ msgstr "執行守護行程的使用者" 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:20 msgid "" -"ServerAddr specifies the address of the server to connect to.
By default, " -"this value is \"0.0.0.0\"." -msgstr "ServerAddr指定要連接的伺服器的位址。
預設情況下,此值為“ 0.0.0.0”。" +"ServerAddr specifies the address of the server to connect to.
By " +"default, this value is \"0.0.0.0\"." +msgstr "" +"ServerAddr指定要連接的伺服器的位址。
預設情況下,此值為“ 0.0.0.0”。" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" @@ -326,34 +360,34 @@ msgid "" "this value is 7000." msgstr "ServerPort指定用於連接伺服器的埠號。
預設情況下,此值為7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68 +#: 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:177 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:181 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:189 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Startup Settings" msgstr "啟動設定值" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:55 +#: 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:31 +#: 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:35 +#: 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:35 +#: 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:31 +#: 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 " @@ -363,17 +397,17 @@ msgstr "" "TcpMux切換TCP串流多路複用。這允許來自客戶端的多個請求共享一個TCP連接。如果此" "值為true,則伺服器也必須啟用TCP複用。
預設情況下,此值為true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +#: 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:25 +#: 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:25 +#: 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 " @@ -382,14 +416,14 @@ msgstr "" "Token權杖指定用於創建要發送到伺服器的密鑰的授權金鑰。服務器必須具有匹配的權杖" "才能授權成功。
預設情況下,此值為“”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: 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.
By default, this value is false." msgstr "" "UseCompression控制是否壓縮與伺服器的通信。
預設情況下,此值為false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: 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 " @@ -398,11 +432,11 @@ msgstr "" "UseEncryption控制是否加密與伺服器的通信。使用伺服器和客戶端配置中提供的權杖來" "完成加密。
預設情況下,此值為false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: 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:32 +#: 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 " @@ -411,9 +445,12 @@ msgstr "" "用戶為代理名稱指定前綴,以將其與其他客戶端區分開。如果此值不是“”,則代理名稱" "將自動更改為“ {user}。{proxy_name}”。
預設情況下,此值為“”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 #: 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”"