luci-app-frpc: fix markup which is not valid XHTML
authorJo-Philipp Wich <jo@mein.io>
Fri, 8 Oct 2021 17:50:54 +0000 (19:50 +0200)
committerJo-Philipp Wich <jo@mein.io>
Fri, 8 Oct 2021 17:53:09 +0000 (19:53 +0200)
Replace `<br>` with `<br />` as XHTML does not allow self-closing tags.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
34 files changed:
applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js
applications/luci-app-frpc/po/ar/frpc.po
applications/luci-app-frpc/po/bg/frpc.po
applications/luci-app-frpc/po/bn_BD/frpc.po
applications/luci-app-frpc/po/ca/frpc.po
applications/luci-app-frpc/po/cs/frpc.po
applications/luci-app-frpc/po/de/frpc.po
applications/luci-app-frpc/po/el/frpc.po
applications/luci-app-frpc/po/en/frpc.po
applications/luci-app-frpc/po/es/frpc.po
applications/luci-app-frpc/po/fi/frpc.po
applications/luci-app-frpc/po/fr/frpc.po
applications/luci-app-frpc/po/he/frpc.po
applications/luci-app-frpc/po/hi/frpc.po
applications/luci-app-frpc/po/hu/frpc.po
applications/luci-app-frpc/po/it/frpc.po
applications/luci-app-frpc/po/ja/frpc.po
applications/luci-app-frpc/po/ko/frpc.po
applications/luci-app-frpc/po/mr/frpc.po
applications/luci-app-frpc/po/ms/frpc.po
applications/luci-app-frpc/po/nb_NO/frpc.po
applications/luci-app-frpc/po/pl/frpc.po
applications/luci-app-frpc/po/pt/frpc.po
applications/luci-app-frpc/po/pt_BR/frpc.po
applications/luci-app-frpc/po/ro/frpc.po
applications/luci-app-frpc/po/ru/frpc.po
applications/luci-app-frpc/po/sk/frpc.po
applications/luci-app-frpc/po/sv/frpc.po
applications/luci-app-frpc/po/templates/frpc.pot
applications/luci-app-frpc/po/tr/frpc.po
applications/luci-app-frpc/po/uk/frpc.po
applications/luci-app-frpc/po/vi/frpc.po
applications/luci-app-frpc/po/zh_Hans/frpc.po
applications/luci-app-frpc/po/zh_Hant/frpc.po

index fb8f679b32a00737d5f65dc6e6fda1808c5496c9..ec75e0bf9462f745278082bb07c5327c9fb9b6b4 100644 (file)
@@ -17,31 +17,31 @@ var startupConf = [
 ];
 
 var commonConf = [
-       [form.Value, 'server_addr', _('Server address'), _('ServerAddr specifies the address of the server to connect to.<br>By default, this value is "0.0.0.0".'), {datatype: 'host'}],
-       [form.Value, 'server_port', _('Server port'), _('ServerPort specifies the port to connect to the server on.<br>By default, this value is 7000.'), {datatype: 'port'}],
-       [form.Value, 'http_proxy', _('HTTP proxy'), _('HttpProxy specifies a proxy address to connect to the server through. If this value is "", the server will be connected to directly.<br>By default, this value is read from the "http_proxy" environment variable.')],
-       [form.ListValue, 'log_level', _('Log level'), _('LogLevel specifies the minimum log level. Valid values are "trace", "debug", "info", "warn", and "error".<br>By default, this value is "info".'), {values: ['trace', 'debug', 'info', 'warn', 'error']}],
+       [form.Value, 'server_addr', _('Server address'), _('ServerAddr specifies the address of the server to connect to.<br />By default, this value is "0.0.0.0".'), {datatype: 'host'}],
+       [form.Value, 'server_port', _('Server port'), _('ServerPort specifies the port to connect to the server on.<br />By default, this value is 7000.'), {datatype: 'port'}],
+       [form.Value, 'http_proxy', _('HTTP proxy'), _('HttpProxy specifies a proxy address to connect to the server through. If this value is "", the server will be connected to directly.<br />By default, this value is read from the "http_proxy" environment variable.')],
+       [form.ListValue, 'log_level', _('Log level'), _('LogLevel specifies the minimum log level. Valid values are "trace", "debug", "info", "warn", and "error".<br />By default, this value is "info".'), {values: ['trace', 'debug', 'info', 'warn', 'error']}],
        [form.Flag, 'disable_log_color', _('Disable log color'), _('DisableLogColor disables log colors when LogWay == "console" when set to true.'), {datatype: 'bool', default: 'true'}],
-       [form.Value, 'token', _('Token'), _('Token specifies the authorization token used to create keys to be sent to the server. The server must have a matching token for authorization to succeed. <br>By default, this value is "".')],
-       [form.Value, 'admin_addr', _('Admin address'), _('AdminAddr specifies the address that the admin server binds to.<br>By default, this value is "127.0.0.1".'), {datatype: 'ipaddr'}],
-       [form.Value, 'admin_port', _('Admin port'), _('AdminPort specifies the port for the admin server to listen on. If this value is 0, the admin server will not be started.<br>By default, this value is 0.'), {datatype: 'port'}],
-       [form.Value, 'admin_user', _('Admin user'), _('AdminUser specifies the username that the admin server will use for login.<br>By default, this value is "admin".')],
-       [form.Value, 'admin_pwd', _('Admin password'), _('AdminPwd specifies the password that the admin server will use for login.<br>By default, this value is "admin".'), {password: true}],
-       [form.Value, 'assets_dir', _('Assets dir'), _('AssetsDir specifies the local directory that the admin server will load resources from. If this value is "", assets will be loaded from the bundled executable using statik.<br>By default, this value is "".')],
-       [form.Flag, 'tcp_mux', _('TCP mux'), _('TcpMux toggles TCP stream multiplexing. This allows multiple requests from a client to share a single TCP connection. If this value is true, the server must have TCP multiplexing enabled as well.<br>By default, this value is true.'), {datatype: 'bool', default: 'true'}],
-       [form.Value, 'user', _('User'), _('User specifies a prefix for proxy names to distinguish them from other clients. If this value is not "", proxy names will automatically be changed to "{user}.{proxy_name}".<br>By default, this value is "".')],
-       [form.Flag, 'login_fail_exit', _('Exit when login fail'), _('LoginFailExit controls whether or not the client should exit after a failed login attempt. If false, the client will retry until a login attempt succeeds.<br>By default, this value is true.'), {datatype: 'bool', default: 'true'}],
-       [form.ListValue, 'protocol', _('Protocol'), _('Protocol specifies the protocol to use when interacting with the server. Valid values are "tcp", "kcp", and "websocket".<br>By default, this value is "tcp".'), {values: ['tcp', 'kcp', 'websocket']}],
+       [form.Value, 'token', _('Token'), _('Token specifies the authorization token used to create keys to be sent to the server. The server must have a matching token for authorization to succeed. <br />By default, this value is "".')],
+       [form.Value, 'admin_addr', _('Admin address'), _('AdminAddr specifies the address that the admin server binds to.<br />By default, this value is "127.0.0.1".'), {datatype: 'ipaddr'}],
+       [form.Value, 'admin_port', _('Admin port'), _('AdminPort specifies the port for the admin server to listen on. If this value is 0, the admin server will not be started.<br />By default, this value is 0.'), {datatype: 'port'}],
+       [form.Value, 'admin_user', _('Admin user'), _('AdminUser specifies the username that the admin server will use for login.<br />By default, this value is "admin".')],
+       [form.Value, 'admin_pwd', _('Admin password'), _('AdminPwd specifies the password that the admin server will use for login.<br />By default, this value is "admin".'), {password: true}],
+       [form.Value, 'assets_dir', _('Assets dir'), _('AssetsDir specifies the local directory that the admin server will load resources from. If this value is "", assets will be loaded from the bundled executable using statik.<br />By default, this value is "".')],
+       [form.Flag, 'tcp_mux', _('TCP mux'), _('TcpMux toggles TCP stream multiplexing. This allows multiple requests from a client to share a single TCP connection. If this value is true, the server must have TCP multiplexing enabled as well.<br />By default, this value is true.'), {datatype: 'bool', default: 'true'}],
+       [form.Value, 'user', _('User'), _('User specifies a prefix for proxy names to distinguish them from other clients. If this value is not "", proxy names will automatically be changed to "{user}.{proxy_name}".<br />By default, this value is "".')],
+       [form.Flag, 'login_fail_exit', _('Exit when login fail'), _('LoginFailExit controls whether or not the client should exit after a failed login attempt. If false, the client will retry until a login attempt succeeds.<br />By default, this value is true.'), {datatype: 'bool', default: 'true'}],
+       [form.ListValue, 'protocol', _('Protocol'), _('Protocol specifies the protocol to use when interacting with the server. Valid values are "tcp", "kcp", and "websocket".<br />By default, this value is "tcp".'), {values: ['tcp', 'kcp', 'websocket']}],
        [form.Flag, 'tls_enable', _('TLS'), _('TLSEnable specifies whether or not TLS should be used when communicating with the server.'), {datatype: 'bool'}],
-       [form.Value, 'heartbeat_interval', _('Heartbeat interval'), _('HeartBeatInterval specifies at what interval heartbeats are sent to the server, in seconds. It is not recommended to change this value.<br>By default, this value is 30.'), {datatype: 'uinteger'}],
-       [form.Value, 'heartbeat_timeout', _('Heartbeat timeout'), _('HeartBeatTimeout specifies the maximum allowed heartbeat response delay before the connection is terminated, in seconds. It is not recommended to change this value.<br>By default, this value is 90.'), {datatype: 'uinteger'}],
+       [form.Value, 'heartbeat_interval', _('Heartbeat interval'), _('HeartBeatInterval specifies at what interval heartbeats are sent to the server, in seconds. It is not recommended to change this value.<br />By default, this value is 30.'), {datatype: 'uinteger'}],
+       [form.Value, 'heartbeat_timeout', _('Heartbeat timeout'), _('HeartBeatTimeout specifies the maximum allowed heartbeat response delay before the connection is terminated, in seconds. It is not recommended to change this value.<br />By default, this value is 90.'), {datatype: 'uinteger'}],
        [form.DynamicList, '_', _('Additional settings'), _('This list can be used to specify some additional parameters which have not been included in this LuCI.'), {placeholder: 'Key-A=Value-A'}]
 ];
 
 var baseProxyConf = [
-       [form.ListValue, 'type', _('Proxy type'), _('ProxyType specifies the type of this proxy. Valid values include "tcp", "udp", "http", "https", "stcp", and "xtcp".<br>By default, this value is "tcp".'), {values: ['tcp', 'udp', 'http', 'https', 'stcp', 'xtcp']}],
-       [form.Flag, 'use_encryption', _('Encryption'), _('UseEncryption controls whether or not communication with the server will be encrypted. Encryption is done using the tokens supplied in the server and client configuration.<br>By default, this value is false.'), {datatype: 'bool'}],
-       [form.Flag, 'use_compression', _('Compression'), _('UseCompression controls whether or not communication with the server will be compressed.<br>By default, this value is false.'), {datatype: 'bool'}],
+       [form.ListValue, 'type', _('Proxy type'), _('ProxyType specifies the type of this proxy. Valid values include "tcp", "udp", "http", "https", "stcp", and "xtcp".<br />By default, this value is "tcp".'), {values: ['tcp', 'udp', 'http', 'https', 'stcp', 'xtcp']}],
+       [form.Flag, 'use_encryption', _('Encryption'), _('UseEncryption controls whether or not communication with the server will be encrypted. Encryption is done using the tokens supplied in the server and client configuration.<br />By default, this value is false.'), {datatype: 'bool'}],
+       [form.Flag, 'use_compression', _('Compression'), _('UseCompression controls whether or not communication with the server will be compressed.<br />By default, this value is false.'), {datatype: 'bool'}],
        [form.Value, 'local_ip', _('Local IP'), _('LocalIp specifies the IP address or host name to proxy to.'), {datatype: 'ipaddr'}],
        [form.Value, 'local_port', _('Local port'), _('LocalPort specifies the port to proxy to.'), {datatype: 'port'}],
 ];
index 5a9f55b7e955d31c846dda0adbbc6b474051955f..71cc90f17282598fab06877bc7f64a50b2d5e610 100644 (file)
@@ -37,27 +37,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -68,7 +68,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -140,7 +140,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -148,7 +148,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -166,7 +166,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -211,14 +211,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -242,7 +242,7 @@ msgstr "بروتوكول"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -258,7 +258,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -296,13 +296,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -337,7 +337,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -355,20 +355,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -379,7 +379,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 3d13cd971f39b5be515bb483783558d2db46036c..c37ffacc9f4035f6f3296842dea4a318cb7efa20 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Протокол"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index bc23ee6326c00f558dfb7deab725043707409368..c283518051c8acb7e106632f065bb09a1270c97b 100644 (file)
@@ -30,27 +30,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -61,7 +61,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -133,7 +133,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -159,7 +159,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -204,14 +204,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -235,7 +235,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -251,7 +251,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -289,13 +289,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -348,20 +348,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -372,7 +372,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 8481593512314f326e302efda20c2c553955c221..01ca397daf7cc6aef67e2c34565bd582acf8d724 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 9df4b96cc830c46122a2a230cd57d502e2306513..52b16cbb1f64f1687aa04baa29208d24cee3c43a 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr "HTTP uživatel"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Protokol"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr "Typ proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr "Port serveru"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr "Uživatel"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index bd9828c7d698a361ea039bd5ff5896e96313dd9c..3768f121a5060ce59fe61b822bcdd391c2b49a6c 100644 (file)
@@ -36,37 +36,37 @@ msgstr "Admin-Nutzer"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 "AdminAddr spezifiziert die Adresse auf der der Admin-Server lauscht."
-"<br>Standard für diesen Wert ist \"127.0.0.1\"."
+"<br />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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort spezifiziert den Port auf dem der Admin-Server lauschen soll. "
-"Falls der Wert 0 ist, wird kein Admin-Server gestartet.<br>Standardwert ist "
+"Falls der Wert 0 ist, wird kein Admin-Server gestartet.<br />Standardwert ist "
 "0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd spezifiziert das Kennwort, dass der Admin-Server zum Login abfrägt."
-"<br>Standardkennwort ist \"admin\"."
+"<br />Standardkennwort ist \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser spezifiziert den Benutzername, den der Admin-Server fürs Login "
-"verwenden soll.<br>Standardnutzer ist \"admin\"."
+"verwenden soll.<br />Standardnutzer ist \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -76,11 +76,11 @@ msgstr "Asset-Verzeichnis"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir spezifiziert das lokale Verzeichnis, aus dem der Admin-Server "
 "seine Ressourcen lädt. Falls der Wert \"\" beträgt, werden Ressource aus der "
-"mitgelieferten ausführbaren Datei mittels statik geladen.<br>Standardwert "
+"mitgelieferten ausführbaren Datei mittels statik geladen.<br />Standardwert "
 "ist \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -154,22 +154,22 @@ msgstr "HTTP-User"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval spezifiziert den Zeitabstand zwischen dem Senden von "
 "Heartbeats an den Server in Sekunden. Es wird nicht empfohlen, diesen Wert "
-"zu ändern.<br>Standardwert hierfür ist 30."
+"zu ändern.<br />Standardwert hierfür ist 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout spzifiziert die maximal erlaubte Heartbeat-Antwort-"
 "Verzögerung in Sekunden, bevor die Verbindung gekappt wird. Es wird nicht "
-"empfohlen, diesen Wert zu ändern.<br>Standardwert hierfür ist 90."
+"empfohlen, diesen Wert zu ändern.<br />Standardwert hierfür ist 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -186,12 +186,12 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy spezifiert über welche Proxy-Adresse zum Server verbunden werden "
 "soll. Falls dieser Wert \"\" ist, wird direkt zum Server verbunden."
-"<br>Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable "
+"<br />Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable "
 "gelesen."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -239,21 +239,21 @@ msgstr "Logge 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel spezifiziert den minimalen Log-Level. Gültige Werte sind \"trace\", "
-"\"debug\", \"info\", \"warn\" und \"error\".<br>Standartwert hierfür ist "
+"\"debug\", \"info\", \"warn\" und \"error\".<br />Standartwert hierfür ist "
 "\"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit legt fest, ob sich ein Client nach einem fehlgeschlagenen "
 "Loginversuch beenden soll. Falls es auf falsch steht, wir es der client so "
-"oft versuchen, bis es erfolgreich war.<br>Standardwert hierfür ist wahr."
+"oft versuchen, bis es erfolgreich war.<br />Standardwert hierfür ist wahr."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -279,12 +279,12 @@ msgstr "Protokoll"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocol spezifiziert das Protokoll welches zur Interaktion mit dem Server "
 "verwendet werden soll. Gültige Werte sind \"tcp\", \"kcp\" und \"websocket\"."
-"<br>Standardwert hierfür ist \"tcp\"."
+"<br />Standardwert hierfür ist \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
 msgid "Proxy Settings"
@@ -298,11 +298,11 @@ msgstr "Proxy-Typ"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType spezifiziert den Typ des Proxyservers. Gültige Werte beinhalten "
-"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".<br>Standardwert hierfür "
+"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".<br />Standardwert hierfür "
 "ist \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -339,19 +339,19 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 "ServerAddr spezifiziert die Adresse des Servers zu dem Verbunden werden soll."
-"<br>Standardwert hierfür ist \"0.0.0.0\"."
+"<br />Standardwert hierfür ist \"0.0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 "ServerPort spezifiziert den Port des Servers zu dem verbunden werden soll."
-"<br>Standardwert hierfür ist 7000."
+"<br />Standardwert hierfür ist 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
 msgid "Sk"
@@ -386,13 +386,13 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux regelt ob TCP-Stream-Multiplexing genutzt werden soll. Dies erlaubt "
 "mehrere Requests eines Clients über eine TCP-Verbindung. Falls dieser Wert "
 "auf wahr steht, muss der Server ebenfalls TCP-Multiplexing aktiviert haben."
-"<br>Standardwert hierfür ist wahr."
+"<br />Standardwert hierfür ist wahr."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
 msgid ""
@@ -408,30 +408,30 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token spezifiziert das Authorisations-Token, das für die Erzeugung von "
 "Schlüsseln die an den Server gesendet werden genutzt wird. Der Server muss "
 "ein gleichlautendes Token zur Authorisation eingestellt haben."
-"<br>Standardwert hierfür ist \"\"."
+"<br />Standardwert hierfür ist \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression legt fest, ob die Datenverbindung mit dem Server komprimiert "
-"werden soll.<br>Standardwert hierfür ist falsch."
+"werden soll.<br />Standardwert hierfür ist falsch."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption legt fest, ob die Datenverbindung mit dem Server verschlüsselt "
 "werden soll. Die Verschlüsselung erfolgt mittels der eingestellten Token auf "
-"Server- und Clientseite.<br>Standardwert hierfür ist falsch."
+"Server- und Clientseite.<br />Standardwert hierfür ist falsch."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -441,11 +441,11 @@ msgstr "Nutzer"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "User spezifiziert den Präfix für Proxy-Namen zur Unterscheidung von anderen "
 "Clients. Falls dieser Wert \"\" beträgt, werden Proxy-Namen automatisch zu "
-"\"{user} {proxy_name} \" umgeschrieben.<br>Standardwert hierfür ist \"\"."
+"\"{user} {proxy_name} \" umgeschrieben.<br />Standardwert hierfür ist \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
index a994326897d762983ce4ffc249adfc020032e583..049bbb492944bfafcd688b6fd6f74d28ad423775 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 3d9c5c3ae5cde8ce308f3a3fdea6511c07158eb2..ca65035197c8e943d89dcf55c03fb7b13861928e 100644 (file)
@@ -30,27 +30,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -61,7 +61,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -133,7 +133,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -159,7 +159,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -204,14 +204,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -235,7 +235,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -251,7 +251,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -289,13 +289,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -348,20 +348,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -372,7 +372,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 8331dac5805d9dc9b32b6ed47b1520e828b89516..d17174a5f9ead1b92c10ac58796ff5fff5728ef4 100644 (file)
@@ -39,37 +39,37 @@ msgstr "Usuario del administrador"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 "AdminAddr especifica la dirección a la que se une el servidor de "
-"administración.<br>De manera predeterminada, este valor es \"127.0.0.1\"."
+"administración.<br />De manera predeterminada, este valor es \"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort especifica el puerto para que el servidor de administración "
 "escuche. Si este valor es 0, el servidor de administración no se iniciará."
-"<br>De manera predeterminada, este valor es 0."
+"<br />De manera predeterminada, este valor es 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd especifica la contraseña que el servidor de administración usará "
-"para iniciar sesión.<br>De manera predeterminada, este valor es \"admin\"."
+"para iniciar sesión.<br />De manera predeterminada, este valor es \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser especifica el nombre de usuario que el administrador del servidor "
-"usará para iniciar sesión.<br> Por defecto, este valor es \"admin\"."
+"usará para iniciar sesión.<br /> Por defecto, este valor es \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -79,11 +79,11 @@ msgstr "Directorio de activos"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir especifica el directorio local desde el que el servidor de "
 "administración cargará los recursos. Si este valor es \"\", los activos se "
-"cargarán desde el ejecutable incluido usando statik.<br>Por defecto, este "
+"cargarán desde el ejecutable incluido usando statik.<br />Por defecto, este "
 "valor es \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -159,22 +159,22 @@ msgstr "Usuario HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval especifica en qué intervalo se envían los latidos al "
-"servidor, en segundos. No se recomienda cambiar este valor.<br>Por defecto, "
+"servidor, en segundos. No se recomienda cambiar este valor.<br />Por defecto, "
 "este valor es 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout especifica el retraso de respuesta de latido máximo "
 "permitido antes de que finalice la conexión, en segundos. No se recomienda "
-"cambiar este valor.<br>Por defecto, este valor es 90."
+"cambiar este valor.<br />Por defecto, este valor es 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -191,11 +191,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy especifica una dirección proxy para conectarse al servidor. Si "
-"este valor es \"\", el servidor se conectará directamente.<br>De manera "
+"este valor es \"\", el servidor se conectará directamente.<br />De manera "
 "predeterminada, este valor se lee desde la variable de entorno \"http_proxy"
 "\"."
 
@@ -240,21 +240,21 @@ msgstr "Registro de 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel especifica el nivel mínimo de registro. Los valores válidos son "
-"\"trace\", \"debug\", \"info\", \"warn\" y \"error\".<br>Por defecto, este "
+"\"trace\", \"debug\", \"info\", \"warn\" y \"error\".<br />Por defecto, este "
 "valor es \"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit controla si el cliente debe salir o no después de un intento "
 "fallido de inicio de sesión. Si es falso, el cliente volverá a intentarlo "
-"hasta que un intento de inicio de sesión tenga éxito.<br>Por defecto, este "
+"hasta que un intento de inicio de sesión tenga éxito.<br />Por defecto, este "
 "valor es verdadero."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -282,11 +282,11 @@ msgstr "Protocolo"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocolo especifica el protocolo que se utilizará al interactuar con el "
-"servidor. Los valores válidos son \"tcp\", \"kcp\" y \"websocket\".<br>De "
+"servidor. Los valores válidos son \"tcp\", \"kcp\" y \"websocket\".<br />De "
 "manera predeterminada, este valor es \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
@@ -301,11 +301,11 @@ msgstr "Tipo de proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType especifica el tipo de este proxy. Los valores válidos incluyen "
-"\"tcp\", \"udp\", \"http\", \"https\", \"stcp\" y \"xtcp\".<br>Por defecto, "
+"\"tcp\", \"udp\", \"http\", \"https\", \"stcp\" y \"xtcp\".<br />Por defecto, "
 "este valor es \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -342,18 +342,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr especifica la dirección del servidor al que conectarse.<br>Por "
+"ServerAddr especifica la dirección del servidor al que conectarse.<br />Por "
 "defecto, este valor es \"0.0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"ServerPort especifica el puerto para conectarse al servidor.<br>Por defecto, "
+"ServerPort especifica el puerto para conectarse al servidor.<br />Por defecto, "
 "este valor es 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -389,13 +389,13 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux alterna la multiplexación de flujo TCP. Esto permite que múltiples "
 "solicitudes de un cliente compartan una sola conexión TCP. Si este valor es "
 "verdadero, el servidor también debe tener habilitada la multiplexación TCP."
-"<br>De manera predeterminada, este valor es verdadero."
+"<br />De manera predeterminada, este valor es verdadero."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
 msgid ""
@@ -413,29 +413,29 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token especifica el token de autorización utilizado para crear claves para "
 "enviar al servidor. El servidor debe tener un token coincidente para que la "
-"autorización tenga éxito.<br>Por defecto, este valor es \"\"."
+"autorización tenga éxito.<br />Por defecto, este valor es \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression controla si la comunicación con el servidor se comprimirá o "
-"no.<br>Por defecto, este valor es falso."
+"no.<br />Por defecto, este valor es falso."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption controla si la comunicación con el servidor se cifrará o no. "
 "El cifrado se realiza utilizando los tokens suministrados en la "
-"configuración del servidor y del cliente.<br>De manera predeterminada, este "
+"configuración del servidor y del cliente.<br />De manera predeterminada, este "
 "valor es falso."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -446,11 +446,11 @@ msgstr "Usuario"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "El usuario especifica un prefijo para los nombres de proxy para "
 "distinguirlos de otros clientes. Si este valor no es \"\", los nombres de "
-"proxy se cambiarán automáticamente a \"{user}.{Proxy_name}\".<br>De manera "
+"proxy se cambiarán automáticamente a \"{user}.{Proxy_name}\".<br />De manera "
 "predeterminada, este valor es \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 7ed9886dc87c20adb603ba272c0781c8a1df3925..7cff0529070be155da3d0485328f46cc3169299e 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Protokolla"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr "Käyttäjä"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index b1dc655e90f5a20bedd958f4ebc6d7b385f6789b..50d3ad52ae49f9d0a63754d829df3996945e7de2 100644 (file)
@@ -36,37 +36,37 @@ msgstr "Utilisateur administrateur"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 "AdminAddr spécifie l'adresse à laquelle le serveur d'administration se lie."
-"<br>Par défaut, cette valeur est \"127.0.0.1\"."
+"<br />Par défaut, cette valeur est \"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort spécifie le port d'écoute du serveur d'administration. Si cette "
-"valeur est 0, le serveur d'administration ne sera pas démarré.<br>Par "
+"valeur est 0, le serveur d'administration ne sera pas démarré.<br />Par "
 "défaut, cette valeur est 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd spécifie le mot de passe que le serveur d'administration utilisera "
-"pour la connexion.<br>Par défaut, cette valeur est \"admin\"."
+"pour la connexion.<br />Par défaut, cette valeur est \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser spécifie le nom d'utilisateur que le serveur d'administration "
-"utilisera pour la connexion.<br>Par défaut, cette valeur est \"admin\"."
+"utilisera pour la connexion.<br />Par défaut, cette valeur est \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -76,12 +76,12 @@ msgstr "Répertoire des actifs"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir spécifie le répertoire local à partir duquel le serveur "
 "d'administration chargera les ressources. Si cette valeur est \"\", les "
 "actifs seront chargés à partir de l'exécutable fourni à l'aide de statik."
-"<br>Par défaut, cette valeur est \"\"."
+"<br />Par défaut, cette valeur est \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
 msgid "Collecting data ..."
@@ -156,22 +156,22 @@ msgstr "Utilisateur HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval spécifie à quel intervalle les pulsations sont envoyées au "
 "serveur, en secondes. Il n'est pas recommandé de modifier cette valeur."
-"<br>Par défaut, cette valeur est 30."
+"<br />Par défaut, cette valeur est 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout spécifie le délai maximal de réponse de pulsation autorisé "
 "avant la fin de la connexion, en secondes. Il n'est pas recommandé de "
-"modifier cette valeur.<br>Par défaut, cette valeur est 90."
+"modifier cette valeur.<br />Par défaut, cette valeur est 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -188,11 +188,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy spécifie une adresse proxy pour se connecter au serveur via. Si "
-"cette valeur est \"\", le serveur sera directement connecté.<br>Par défaut, "
+"cette valeur est \"\", le serveur sera directement connecté.<br />Par défaut, "
 "cette valeur est lue à partir de la variable d'environnement \"http_proxy\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -236,21 +236,21 @@ msgstr "Log 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel spécifie le niveau de journalisation minimum. Les valeurs valides "
-"sont \"trace\", \"debug\", \"info\", \"warn\" et \"error\".<br>Par défaut, "
+"sont \"trace\", \"debug\", \"info\", \"warn\" et \"error\".<br />Par défaut, "
 "cette valeur est \"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit contrôle si le client doit quitter ou non après une tentative "
 "de connexion échouée. Si la valeur est false, le client réessayera jusqu'à "
-"ce qu'une tentative de connexion réussisse.<br>Par défaut, cette valeur est "
+"ce qu'une tentative de connexion réussisse.<br />Par défaut, cette valeur est "
 "vraie."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -277,11 +277,11 @@ msgstr "Protocole"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocol spécifie le protocole à utiliser lors de l'interaction avec le "
-"serveur. Les valeurs valides sont \"tcp\", \"kcp\" et \"websocket\".<br>Par "
+"serveur. Les valeurs valides sont \"tcp\", \"kcp\" et \"websocket\".<br />Par "
 "défaut, cette valeur est \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
@@ -296,11 +296,11 @@ msgstr "Type de proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType spécifie le type de ce proxy. Les valeurs valides sont \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\" et \"xtcp\".<br>Par défaut, cette "
+"\"udp\", \"http\", \"https\", \"stcp\" et \"xtcp\".<br />Par défaut, cette "
 "valeur est \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -337,18 +337,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr spécifie l'adresse du serveur auquel se connecter.<br>Par défaut, "
+"ServerAddr spécifie l'adresse du serveur auquel se connecter.<br />Par défaut, "
 "cette valeur est \"0.0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"ServerPort spécifie le port sur lequel se connecter au serveur.<br>Par "
+"ServerPort spécifie le port sur lequel se connecter au serveur.<br />Par "
 "défaut, cette valeur est 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -384,12 +384,12 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux bascule le multiplexage de flux TCP. Cela permet à plusieurs demandes "
 "d'un client de partager une seule connexion TCP. Si cette valeur est vraie, "
-"le multiplexage TCP doit également être activé sur le serveur.<br>Par "
+"le multiplexage TCP doit également être activé sur le serveur.<br />Par "
 "défaut, cette valeur est vraie."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
@@ -408,29 +408,29 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token spécifie le jeton d'autorisation utilisé pour créer les clés à envoyer "
 "au serveur. Le serveur doit avoir un jeton correspondant pour que "
-"l'autorisation réussisse.<br>Par défaut, cette valeur est \"\"."
+"l'autorisation réussisse.<br />Par défaut, cette valeur est \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression contrôle si la communication avec le serveur sera compressée "
-"ou non.<br>Par défaut, cette valeur est false."
+"ou non.<br />Par défaut, cette valeur est false."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption contrôle si la communication avec le serveur sera chiffrée ou "
 "non. Le chiffrement est effectué à l'aide des jetons fournis dans la "
-"configuration du serveur et du client.<br>Par défaut, cette valeur est "
+"configuration du serveur et du client.<br />Par défaut, cette valeur est "
 "fausse."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -441,11 +441,11 @@ msgstr "Utilisateur"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "L'utilisateur spécifie un préfixe pour les noms de proxy pour les distinguer "
 "des autres clients. Si cette valeur n'est pas \"\", les noms de proxy seront "
-"automatiquement modifiés en \"{user}.{Proxy_name}\".<br>Par défaut, cette "
+"automatiquement modifiés en \"{user}.{Proxy_name}\".<br />Par défaut, cette "
 "valeur est \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 3edaa0f2a3556308655f11dccf8b6b9f1ac6aa46..47cbfc6ac41b08990ada6b8e22b9445643a27fbd 100644 (file)
@@ -30,27 +30,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -61,7 +61,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -133,7 +133,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -159,7 +159,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -204,14 +204,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -235,7 +235,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -251,7 +251,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -289,13 +289,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -348,20 +348,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -372,7 +372,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index a028125bf69fcfed2898cf3c7a7f223e86e923c2..544b54643da7e8c4501222d36f5641a0c5a5050c 100644 (file)
@@ -30,27 +30,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -61,7 +61,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -133,7 +133,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -159,7 +159,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -204,14 +204,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -235,7 +235,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -251,7 +251,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -289,13 +289,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -348,20 +348,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -372,7 +372,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 87655a5498b00020a4ea54bf378cd46cce69056e..195718c7cce4b76e1f861ba384f411f3dfd76782 100644 (file)
@@ -36,27 +36,27 @@ msgstr "Rendszergazda felhasználó"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr "HTTP felhasználó"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Protokol"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr "Felhasználó"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 6d9ac8d25d5de9913f14cd46e4b463a0a517bde0..dea65a3af96a8585a56f9d24b05b9b16a82d9eaa 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr "Attività dir"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -140,7 +140,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -148,7 +148,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -166,7 +166,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -211,14 +211,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -242,7 +242,7 @@ msgstr "Protocollo"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -258,7 +258,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -296,13 +296,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -337,7 +337,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -355,20 +355,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -379,7 +379,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 4991b7564d69f66031a872f892a787bdda230585..caf50b7ee78b1f05d678e0081700dbf944601984 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr "HTTP ユーザー"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "プロトコル"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr "サーバーのポート"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr "トークン"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr "ユーザー"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 6bbae071999b36e5b34a62a3d2608b562effe6db..dee13b6f352326224493dd38c2a1985e888e0bcc 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 0e1bc9c7a52877629a5fb14e7792d81e1b5077b5..2f4344da3026be3e8f3149110f3ae62204793248 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "प्रोटोकॉल"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 79541fe96641fa661755d69e8ad6c6c3a77846d8..fd005903afc5a8b94ac2ce64e976ed8228f8144d 100644 (file)
@@ -30,27 +30,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -61,7 +61,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -133,7 +133,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -159,7 +159,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -204,14 +204,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -235,7 +235,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -251,7 +251,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -289,13 +289,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -348,20 +348,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -372,7 +372,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index d59112ca3d51c2f666876bee792ec29f92d976ac..fb2e4a1f3f1aa56a4d99cea8ff89b9eb0aea52c6 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Protokoll"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr "Bruker"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index d01834366ffa4dabe482ba3c7dd8097dabfcfb38..c28a8bd81fa62adddbab0f0e48d47c7bd01c2b29 100644 (file)
@@ -37,34 +37,34 @@ msgstr "Administrator użytkownika"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
-"AdminAddr określa adres, który serwer administracyjny łączy z adresem.<br> "
+"AdminAddr określa adres, który serwer administracyjny łączy z adresem.<br /> "
 "Domyślnie jest to wartość \"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort określa port, na którym serwer administracyjny ma nasłuchiwać. "
 "Jeśli ta wartość wynosi 0, serwer administracyjny nie zostanie uruchomiony. "
-"<br> Domyślnie ta wartość wynosi 0."
+"<br /> Domyślnie ta wartość wynosi 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd określa hasło, którego będzie używał serwer administracyjny do "
-"logowania. <br> Domyślnie ta wartość to \"admin\"."
+"logowania. <br /> Domyślnie ta wartość to \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser określa nazwę użytkownika, której serwer administracyjny będzie "
 "używał do logowania. Domyślnie ta wartość to \"admin\"."
@@ -77,11 +77,11 @@ msgstr "Assets dir"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir określa katalog lokalny, z którego serwer administracyjny będzie "
 "ładował zasoby. Jeśli ta wartość to \"\", zasoby zostaną załadowane z "
-"pakietu wykonywalnego przy użyciu statik. <br> Domyślnie ta wartość to \"\"."
+"pakietu wykonywalnego przy użyciu statik. <br /> Domyślnie ta wartość to \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
 msgid "Collecting data ..."
@@ -154,22 +154,22 @@ msgstr "Użytkownik HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval określa, w jakich odstępach czasu pulsy są wysyłane do "
-"serwera, w sekundach. Nie zaleca się zmiany tej wartości. <br> Domyślnie ta "
+"serwera, w sekundach. Nie zaleca się zmiany tej wartości. <br /> Domyślnie ta "
 "wartość wynosi 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout określa maksymalne dozwolone opóźnienie odpowiedzi pulsu "
 "przed zakończeniem połączenia (w sekundach). Nie zaleca się zmiany tej "
-"wartości. <br> Domyślnie ta wartość wynosi 90."
+"wartości. <br /> Domyślnie ta wartość wynosi 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -186,11 +186,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy określa adres proxy do połączenia z serwerem. Jeśli ta wartość to "
-"\"\", serwer zostanie podłączony bezpośrednio. <br> Domyślnie ta wartość "
+"\"\", serwer zostanie podłączony bezpośrednio. <br /> Domyślnie ta wartość "
 "jest odczytywana ze zmiennej środowiskowej \"http_proxy\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -235,20 +235,20 @@ msgstr "Dziennik 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel określa minimalny poziom dziennika. Poprawne wartości to \"trace\", "
-"\"debug\", \"info\", \"warn\" i \"error\".<br> Domyślnie jest to \"info\"."
+"\"debug\", \"info\", \"warn\" i \"error\".<br /> Domyślnie jest to \"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit kontroluje czy klient powinien wyjść po nieudanej próbie "
 "logowania. Jeśli jest ona nieprawdziwa, klient spróbuje ponownie, dopóki "
-"próba logowania nie zakończy się sukcesem.<br> Domyślnie wartość true."
+"próba logowania nie zakończy się sukcesem.<br /> Domyślnie wartość true."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -274,11 +274,11 @@ msgstr "Protokół"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protokół określa protokół używany podczas interakcji z serwerem. Prawidłowe "
-"wartości to \"tcp\", \"kcp\" i \"websocket\". <br> Domyślnie ta wartość to "
+"wartości to \"tcp\", \"kcp\" i \"websocket\". <br /> Domyślnie ta wartość to "
 "\"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
@@ -293,11 +293,11 @@ msgstr "Typ proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType określa typ tego proxy. Prawidłowe wartości to \"tcp\", \"udp\", "
-"\"http\", \"https\", \"stcp\" i \"xtcp\". <br> Domyślnie ta wartość to \"tcp"
+"\"http\", \"https\", \"stcp\" i \"xtcp\". <br /> Domyślnie ta wartość to \"tcp"
 "\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -334,18 +334,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr określa adres serwera, z którymi chcesz się połączyć. <br>Domyśl "
+"ServerAddr określa adres serwera, z którymi chcesz się połączyć. <br />Domyśl "
 "domyślnie ta wartość to \"0.0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"ServerPort określa port do połączenia z serwerem on.<br> Domyślnie wartość "
+"ServerPort określa port do połączenia z serwerem on.<br /> Domyślnie wartość "
 "ta wynosi 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -381,12 +381,12 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux przełącza multipleksowanie strumienia TCP. Pozwala to wielu żądaniom "
 "klienta na współużytkowanie jednego połączenia TCP. Jeśli ta wartość jest "
-"prawdą, serwer musi również mieć włączone multipleksowanie TCP. <br> "
+"prawdą, serwer musi również mieć włączone multipleksowanie TCP. <br /> "
 "Domyślnie ta wartość to true."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
@@ -405,29 +405,29 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token określa token autoryzacji używany do tworzenia kluczy, które mają "
 "zostać wysłane na serwer. Serwer musi mieć pasujący token, aby autoryzacja "
-"zakończyła się powodzeniem. <br> Domyślnie ta wartość to \"\"."
+"zakończyła się powodzeniem. <br /> Domyślnie ta wartość to \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression kontroluje, czy komunikacja z serwerem będzie kompresowana. "
-"<br> Domyślnie ta wartość to false."
+"<br /> Domyślnie ta wartość to false."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption kontroluje, czy komunikacja z serwerem będzie szyfrowana. "
 "Szyfrowanie odbywa się przy użyciu tokenów dostarczonych w konfiguracji "
-"serwera i klienta. <br> Domyślnie ta wartość to false."
+"serwera i klienta. <br /> Domyślnie ta wartość to false."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -437,11 +437,11 @@ msgstr "Użytkownik"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "Użytkownik określa prefiks nazw serwerów proxy, aby odróżnić je od innych "
 "klientów. Jeśli ta wartość nie jest \"\", nazwy serwerów proxy zostaną "
-"automatycznie zmienione na \"{user}. {proxy_name}\". <br>W razie domyślnie "
+"automatycznie zmienione na \"{user}. {proxy_name}\". <br />W razie domyślnie "
 "ta wartość to \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 4fd38d0e52f84a4b7d85925891d0933a45cd043f..9f90d757762fcf42941ce6b23e177bd2c5dd813d 100644 (file)
@@ -36,37 +36,37 @@ msgstr "Utilizador do Administrador"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
-"AdminAddr especifica o endereço para o qual o servidor admin se liga.<br>Por "
+"AdminAddr especifica o endereço para o qual o servidor admin se liga.<br />Por "
 "padrão, este valor é \"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort especifica a porta onde o servidor de administração escuta. Se "
-"este valor for 0, o servidor admin não será iniciado.<br>Por padrão, este "
+"este valor for 0, o servidor admin não será iniciado.<br />Por padrão, este "
 "valor é 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd especifica a palavra-passe que o servidor admin usará para login."
-"<br>Por padrão, este valor é \"admin\"."
+"<br />Por padrão, este valor é \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser especifica o nome de utilizador que o servidor admin usará para "
-"login.<br>Por padrão, este valor é \"admin\"."
+"login.<br />Por padrão, este valor é \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -76,11 +76,11 @@ msgstr "Diretório de ativos"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir determina um diretório local de onde o painel carregará recursos. "
 "Se o valor for \"\", os ativos serão carregados do que estiver embutido no "
-"executável usando o statik. <br>O valor predefinido é \"\"."
+"executável usando o statik. <br />O valor predefinido é \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
 msgid "Collecting data ..."
@@ -154,22 +154,22 @@ msgstr "Utilizador HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval determina em que intervalo heartbeats serão enviados para "
-"o servidor em segundos. Não é recomendável alterar este valor. <br>O valor "
+"o servidor em segundos. Não é recomendável alterar este valor. <br />O valor "
 "predefinido é 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout especifica o atraso máximo permitido de resposta ao "
 "heartbeat antes que a conexão seja encerrada, em segundos. Não é "
-"recomendável alterar esse valor. <br>O valor predefinido é 90."
+"recomendável alterar esse valor. <br />O valor predefinido é 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -186,11 +186,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "O HttpProxy especifica um endereço proxy para conectar ao servidor através "
-"dele. Se esse valor for \"\", o servidor será conectado diretamente. <br>O "
+"dele. Se esse valor for \"\", o servidor será conectado diretamente. <br />O "
 "valor predefinido desse valor é lido da variável do ambiente \"http_proxy\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -234,21 +234,21 @@ msgstr "Registo do 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "O LogLevel determina o nível mínimo de registo. Valores válidos são \"trace"
-"\", \"debug\", \"info\", \"warn\" e \"error\". <br>O valor predefinido é "
+"\", \"debug\", \"info\", \"warn\" e \"error\". <br />O valor predefinido é "
 "\"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit controla se o cliente deve ou não sair após a falha de uma "
 "tentativa de login. Se falso, o cliente tentará novamente até que uma "
-"tentativa de login seja bem sucedida. <br>O valor predefinido é true."
+"tentativa de login seja bem sucedida. <br />O valor predefinido é true."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -274,11 +274,11 @@ msgstr "Protocolo"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "O protocolo especifica o protocolo a ser usado ao interagir com o servidor. "
-"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br>O valor "
+"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br />O valor "
 "predefinido é \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
@@ -293,11 +293,11 @@ msgstr "Tipo de proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType especifica o tipo deste proxy. Os valores válidos incluem \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", e \"xtcp\".<br>O valor predefinido é "
+"\"udp\", \"http\", \"https\", \"stcp\", e \"xtcp\".<br />O valor predefinido é "
 "\"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -334,18 +334,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr especifica o endereço do servidor ao qual se conectar.<br>O valor "
+"ServerAddr especifica o endereço do servidor ao qual se conectar.<br />O valor "
 "predefinido é \"0.0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"ServerPort especifica a porta ao qual se conectar no servidor.<br>O valor "
+"ServerPort especifica a porta ao qual se conectar no servidor.<br />O valor "
 "predefinido é 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -381,12 +381,12 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux alterna multiplexação de fluxo TCP. Isso permite que várias "
 "solicitações de um cliente compartilhem uma única conexão TCP. Se esse valor "
-"for true, o servidor deve ter multiplexing TCP ativado também. <br>O valor "
+"for true, o servidor deve ter multiplexing TCP ativado também. <br />O valor "
 "predefinido é verdadeiro."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
@@ -405,7 +405,7 @@ msgstr "Chave eletrónica"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "O token especifica o token de autorização usado para criar chaves a serem "
 "enviadas para o servidor. O servidor deve ter um token correspondente para a "
@@ -414,20 +414,20 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression controla se a comunicação com o servidor será compactada ou "
-"não. <br>O valor predefinido é false."
+"não. <br />O valor predefinido é false."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption controla se a comunicação com o servidor será criptografada ou "
 "não. A criptografia é feita a usar os tokens fornecidos na configuração do "
-"servidor e do cliente. <br>O valor predefinido é false."
+"servidor e do cliente. <br />O valor predefinido é false."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -437,11 +437,11 @@ msgstr "Utilizador"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "O utilizador especifica um prefixo aos nomes de proxy para distingui-los de "
 "outros clientes. Se este valor não for \"\", os nomes de proxy serão "
-"automaticamente alterados para \"{utilizador}. {nome_do_proxy}\". <br>O "
+"automaticamente alterados para \"{utilizador}. {nome_do_proxy}\". <br />O "
 "valor predefinido é \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index f1505640b908bcf326072578588f83c307893000..fafe2c8726d3bebcb49d7174cada16c6bb84827a 100644 (file)
@@ -36,37 +36,37 @@ msgstr "Usuário administrador"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 "AdminAddr determina o endereço a ser vinculado para uso do administrador do "
-"servidor.<br>O valor predefinido é \"127.0.0.0.1\"."
+"servidor.<br />O valor predefinido é \"127.0.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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "O AdminPort determina a porta onde o servidor administrativo atende. Se esse "
-"valor for 0, o servidor administrativo não será iniciado. <br>O valor "
+"valor for 0, o servidor administrativo não será iniciado. <br />O valor "
 "predefinido é 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd determina a senha de login que será usado para o administrador do "
-"servidor.<br>O valor predefinido é \"admin\"."
+"servidor.<br />O valor predefinido é \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser determina o nome de login do usuário que será usado pelo "
-"administrador do servidor.<br>O valor predefinido é \"admin\"."
+"administrador do servidor.<br />O valor predefinido é \"admin\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -76,11 +76,11 @@ msgstr "Diretório de ativos"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir determina o diretório onde o administrador do servidor irá buscar "
 "recursos para serem carregados. Se o valor for \"\", os ativos serão "
-"carregados do que estiver embutido no executável usando o statik.<br>O valor "
+"carregados do que estiver embutido no executável usando o statik.<br />O valor "
 "predefinido é \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -155,22 +155,22 @@ msgstr "Usuário HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval determina em que intervalo o heartbeats serão enviados "
-"para o servidor em segundos. Não é recomendável alterar este valor. <br>O "
+"para o servidor em segundos. Não é recomendável alterar este valor. <br />O "
 "valor predefinido é 30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout determina o atraso máximo permitido de resposta do "
 "heartbeat antes que a conexão seja encerrada em segundos. Não é recomendável "
-"alterar este valor. <br>O valor predefinido é 90."
+"alterar este valor. <br />O valor predefinido é 90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -187,11 +187,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "O HttpProxy determina um endereço proxy a ser usado pelo servidor. Se este "
-"valor for \"\", o servidor usará conexão direta. <br>O valor predefinido é "
+"valor for \"\", o servidor usará conexão direta. <br />O valor predefinido é "
 "lido a partir da variável \"http_proxy\" do ambiente."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -236,21 +236,21 @@ msgstr "Registro log do 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "O LogLevel determina o nível mínimo de registro no log. Valores válidos são "
-"\"trace\", \"debug\", \"info\", \"warn\" e \"error\". <br>O valor "
+"\"trace\", \"debug\", \"info\", \"warn\" e \"error\". <br />O valor "
 "predefinido é \"info\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit controla se o cliente deve ou não sair após uma tentativa de "
 "login fracassada. Se falso, o cliente tentará novamente até que uma "
-"tentativa de login seja bem sucedida. <br>O valor predefinido é verdadeiro."
+"tentativa de login seja bem sucedida. <br />O valor predefinido é verdadeiro."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -276,11 +276,11 @@ msgstr "Protocolo"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocolo determina o protocolo a ser usado quando interagir com o servidor. "
-"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br>O valor "
+"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br />O valor "
 "predefinido é \"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
@@ -295,11 +295,11 @@ msgstr "Tipo de proxy"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType determina o tipo deste proxy. Os valores válidos incluem \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\" e \"xtcp\". <br>O valor predefinido é "
+"\"udp\", \"http\", \"https\", \"stcp\" e \"xtcp\". <br />O valor predefinido é "
 "\"tcp\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -336,18 +336,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr determina o endereço do servidor para se conectar. <br>O valor "
+"ServerAddr determina o endereço do servidor para se conectar. <br />O valor "
 "predefinido é \"0,0.0.0\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"O ServerPort determina a porta para se conectar ao servidor. <br>O valor "
+"O ServerPort determina a porta para se conectar ao servidor. <br />O valor "
 "predefinido é 7000."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -383,13 +383,13 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux alterna a multiplexação do fluxo TCP. Isso permite que várias "
 "solicitações de um cliente compartilhem uma única conexão TCP. Se esse valor "
 "for verdadeiro, o servidor também deve ter a multiplexação TCP ativada. "
-"<br>O valor predefinido é verdadeiro."
+"<br />O valor predefinido é verdadeiro."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
 msgid ""
@@ -407,29 +407,29 @@ msgstr "Token"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "O token determina o token de autorização usado para criar chaves que serão "
 "enviadas ao servidor. O servidor deve ter um token correspondente para que a "
-"autorização seja bem sucedida. <br>O valor predefinido é \"\"."
+"autorização seja bem sucedida. <br />O valor predefinido é \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression controla se a comunicação com o servidor será compactada ou "
-"não. <br>O valor predefinido é falso."
+"não. <br />O valor predefinido é falso."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption controla se a comunicação com o servidor será criptografada ou "
 "não. A criptografia é feita usando os tokens fornecidos na configuração do "
-"servidor e do cliente. <br>O valor predefinido é falso."
+"servidor e do cliente. <br />O valor predefinido é falso."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -439,11 +439,11 @@ msgstr "Usuário"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "O usuário determina um prefixo para os nomes de proxy para distingui-los de "
 "outros clientes. Se esse valor não for \"\", os nomes de proxy serão "
-"automaticamente alterados para \"{user}. {proxy_name}\". <br>O valor "
+"automaticamente alterados para \"{user}. {proxy_name}\". <br />O valor "
 "predefinido é \"\"."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index b2f36b2f58913b3452aad4192735c1df7dce9d33..cf576c8f1515d8c92e9a2d88a15b4c018fe37496 100644 (file)
@@ -37,27 +37,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -68,7 +68,7 @@ msgstr "Directorul de resurse"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -140,7 +140,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -148,7 +148,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -166,7 +166,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -211,14 +211,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -242,7 +242,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -258,7 +258,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -296,13 +296,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -337,7 +337,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -355,20 +355,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -379,7 +379,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 37663d5c52f5ab832f9b1a344c61dcdd5cb1b91f..6f2d67d44266e950b9ebea5acdc220ae7776942a 100644 (file)
@@ -37,27 +37,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -68,7 +68,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -140,7 +140,7 @@ msgstr "HTTP пользователь"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -148,7 +148,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -166,7 +166,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -211,14 +211,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -242,7 +242,7 @@ msgstr "Протокол"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -258,7 +258,7 @@ msgstr "Тип прокси"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -296,13 +296,13 @@ msgstr "Порт сервера"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -337,7 +337,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -355,20 +355,20 @@ msgstr "Токен"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -379,7 +379,7 @@ msgstr "Пользователь"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 2cbf7555c2453d46740fa18f0ed09fc62ee13c22..a50f66840ecbcf94aa18c308fb501d366301fa9c 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Protokol"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 85de05849d8ad701c30ce9313443ce74e1ee6cbc..ee952ae8277a27ee8e566516b3ff3c66eb6fdc4b 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index a7f57e7784028b8460a307c54587b260bfc6150f..e53c69378f8060e34e6207aa1ae273d3dbbbc462 100644 (file)
@@ -27,27 +27,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -58,7 +58,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -130,7 +130,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -138,7 +138,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -156,7 +156,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -201,14 +201,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -232,7 +232,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -248,7 +248,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -286,13 +286,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -327,7 +327,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -345,20 +345,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -369,7 +369,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 48f0da85c680650ab2caf95c8887b284f5962fce..1911ad4340cbb067aea82d320ba95e6f8eb00d63 100644 (file)
@@ -36,37 +36,37 @@ msgstr "Yönetici kullanıcı"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
-"AdminAddr, yönetici sunucusunun bağlandığı adresi belirtir.<br>Varsayılan "
+"AdminAddr, yönetici sunucusunun bağlandığı adresi belirtir.<br />Varsayılan "
 "olarak bu değer \"127.0.0.1\" dir."
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort, yönetici sunucusunun dinleneceği bağlantı noktasını belirtir. Bu "
-"değer 0 ise, yönetici sunucusu başlatılmayacaktır.<br>Varsayılan olarak bu "
+"değer 0 ise, yönetici sunucusu başlatılmayacaktır.<br />Varsayılan olarak bu "
 "değer 0'dır."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminPwd, yönetici sunucusunun oturum açmak için kullanacağı parolayı "
-"belirtir.<br>Varsayılan olarak bu değer \"admin\" dir."
+"belirtir.<br />Varsayılan olarak bu değer \"admin\" dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 "AdminUser, yönetici sunucusunun oturum açma için kullanacağı kullanıcı adını "
-"belirtir.<br>Varsayılan olarak bu değer \"admin\" dir."
+"belirtir.<br />Varsayılan olarak bu değer \"admin\" dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -76,11 +76,11 @@ msgstr "Varlıklar dizini"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir, yönetici sunucusunun kaynakları yükleyeceği yerel dizini "
 "belirtir. Bu değer \"\" ise, varlıklar statik kullanılarak paketlenmiş "
-"yürütülebilir dosyadan yüklenecektir.<br>Varsayılan olarak bu değer \"\" "
+"yürütülebilir dosyadan yüklenecektir.<br />Varsayılan olarak bu değer \"\" "
 "şeklindedir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -154,22 +154,22 @@ msgstr "HTTP kullanıcısı"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval, sunucuya hangi aralıklarla sinyal gönderileceğini saniye "
-"cinsinden belirtir. Bu değerin değiştirilmesi önerilmez.<br>Varsayılan "
+"cinsinden belirtir. Bu değerin değiştirilmesi önerilmez.<br />Varsayılan "
 "olarak bu değer 30'dur."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout, bağlantı sonlandırılmadan önce izin verilen maksimum kalp "
 "atışı yanıt gecikmesini saniye cinsinden belirtir. Bu değerin değiştirilmesi "
-"önerilmez.<br>Varsayılan olarak bu değer 90'dır."
+"önerilmez.<br />Varsayılan olarak bu değer 90'dır."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -186,11 +186,11 @@ 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.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy, sunucuya bağlanmak için bir proxy adresi belirtir. Bu değer \"\" "
-"ise, sunucuya doğrudan bağlanılacaktır.<br>Varsayılan olarak, bu değer "
+"ise, sunucuya doğrudan bağlanılacaktır.<br />Varsayılan olarak, bu değer "
 "\"http_proxy\" ortam değişkeninden okunur."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -235,21 +235,21 @@ msgstr "Stdout'u günlüğe kaydet"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23
 msgid ""
 "LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug"
-"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel, minimum günlük seviyesini belirtir. Geçerli değerler \"trace\", "
-"\"debug\", \"info\", \"warn\" ve \"error\" dir.<br>Varsayılan olarak bu "
+"\"debug\", \"info\", \"warn\" ve \"error\" dir.<br />Varsayılan olarak bu "
 "değer \"info\" dır."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit, istemcinin başarısız bir oturum açma girişiminden sonra çıkıp "
 "çıkmayacağını kontrol eder. Yanlışsa, istemci başarılı bir oturum açma "
-"girişimi olana kadar yeniden deneyecektir.<br>Varsayılan olarak bu değer "
+"girişimi olana kadar yeniden deneyecektir.<br />Varsayılan olarak bu değer "
 "doğrudur."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -276,12 +276,12 @@ msgstr "Protokol"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protokol, sunucuyla etkileşimde bulunulduğunda kullanılacak protokolü "
 "belirtir. Geçerli değerler \"tcp\", \"kcp\" ve \"websocket\" dir."
-"<br>Varsayılan olarak bu değer \"tcp\" dir."
+"<br />Varsayılan olarak bu değer \"tcp\" dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
 msgid "Proxy Settings"
@@ -295,11 +295,11 @@ msgstr "Proxy türü"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType, bu proxy'nin türünü belirtir. Geçerli değerler arasında \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\" ve \"xtcp\" bulunur.<br>Varsayılan "
+"\"udp\", \"http\", \"https\", \"stcp\" ve \"xtcp\" bulunur.<br />Varsayılan "
 "olarak bu değer \"tcp\" dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
@@ -336,18 +336,18 @@ 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.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr bağlanılacak sunucunun adresini belirtir.<br>Varsayılan olarak bu "
+"ServerAddr bağlanılacak sunucunun adresini belirtir.<br />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.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
-"ServerPort, sunucuya bağlanılacak bağlantı noktasını belirtir.<br>Varsayılan "
+"ServerPort, sunucuya bağlanılacak bağlantı noktasını belirtir.<br />Varsayılan "
 "olarak bu değer 7000'dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
@@ -383,12 +383,12 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux, TCP akış çoklamasını değiştirir. Bu, bir istemciden gelen birden çok "
 "isteğin tek bir TCP bağlantısını paylaşmasına izin verir. Bu değer true ise, "
-"sunucuda da TCP çoklama etkinleştirilmiş olmalıdır.<br>Varsayılan olarak bu "
+"sunucuda da TCP çoklama etkinleştirilmiş olmalıdır.<br />Varsayılan olarak bu "
 "değer doğrudur."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
@@ -407,30 +407,30 @@ msgstr "Jeton"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Belirteç, sunucuya gönderilecek anahtarları oluşturmak için kullanılan "
 "yetkilendirme jetonunu belirtir. Yetkilendirmenin başarılı olması için "
-"sunucunun eşleşen bir jetona sahip olması gerekir.<br>Varsayılan olarak bu "
+"sunucunun eşleşen bir jetona sahip olması gerekir.<br />Varsayılan olarak bu "
 "değer \"\" dir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 "UseCompression, sunucuyla iletişimin sıkıştırılıp sıkıştırılmayacağını "
-"denetler.<br>Varsayılan olarak bu değer yanlıştır."
+"denetler.<br />Varsayılan olarak bu değer yanlıştır."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption, sunucu ile iletişimin şifrelenip şifrelenmeyeceğini kontrol "
 "eder. Şifreleme, sunucu ve istemci yapılandırmasında sağlanan belirteçler "
-"kullanılarak yapılır.<br>Varsayılan olarak bu değer yanlıştır."
+"kullanılarak yapılır.<br />Varsayılan olarak bu değer yanlıştır."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -440,11 +440,11 @@ msgstr "Kullanıcı"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "Kullanıcı, proxy adlarını diğer istemcilerden ayırmak için bir önek "
 "belirler. Bu değer \"\" değilse, proxy adları otomatik olarak \"{kullanıcı}. "
-"{Proxy_name}\" olarak değiştirilecektir.<br>Varsayılan olarak bu değer \"\" "
+"{Proxy_name}\" olarak değiştirilecektir.<br />Varsayılan olarak bu değer \"\" "
 "şeklindedir."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index 25b1f3e2e9094e06418aa46d8bff7971f7f2846e..fa56ba22d8bb38f57ad74481f818ef6348d5b027 100644 (file)
@@ -37,32 +37,32 @@ msgstr "Користувач-адміністратор"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 "AdminAddr встановлює адресу до якої підключається сервер адміністратора."
-"<br>За замовчуванням, це значення - \"127.0.0.1\"."
+"<br />За замовчуванням, це значення - \"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort встановлює порт який буде прослуховуватися сервером "
 "адміністратора. Якщо вказано значення 0, сервер адміністратора не буде "
-"запущений.<br> За замовчуванням, це значення - 0."
+"запущений.<br /> За замовчуванням, це значення - 0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -73,7 +73,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -145,7 +145,7 @@ msgstr "Користувач HTTP"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -153,7 +153,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -171,7 +171,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -216,14 +216,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -247,7 +247,7 @@ msgstr "Протокол"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -263,7 +263,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -301,13 +301,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -342,7 +342,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -360,20 +360,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -384,7 +384,7 @@ msgstr "Користувач"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index c8e4fa291f0971dc6e1d7f93286aa1d67350fb3d..73b84eba98c87688fadfa8d0102c27d6cd38601a 100644 (file)
@@ -36,27 +36,27 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
 msgstr ""
 
 #: 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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
@@ -67,7 +67,7 @@ msgstr ""
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
@@ -139,7 +139,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 
@@ -147,7 +147,7 @@ msgstr ""
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
@@ -165,7 +165,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 
@@ -210,14 +210,14 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
@@ -241,7 +241,7 @@ msgstr "Giao thức"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -257,7 +257,7 @@ msgstr ""
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 
@@ -295,13 +295,13 @@ msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
 msgstr ""
 
@@ -336,7 +336,7 @@ msgstr ""
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 
@@ -354,20 +354,20 @@ msgstr ""
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
@@ -378,7 +378,7 @@ msgstr ""
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
index b974c87496da612280a3122a99fca8e1a4692ead..527f7094efb758656b9046861936479fbcdb8d61 100644 (file)
@@ -36,32 +36,32 @@ msgstr "管理用户"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
-msgstr "AdminAddr 特指用于绑定管理服务器的地址。<br>默认是\"127.0.0.1\"。"
+msgstr "AdminAddr 特指用于绑定管理服务器的地址。<br />默认是\"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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
 "AdminPort 用于指定管理服务器要侦听的端口。如果此值为0,则不会启动管理服务器。"
-"<br>默认情况下,此值为0。"
+"<br />默认情况下,此值为0。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
-"AdminPwd 指定管理服务器用于登录的密码。<br>默认情况下,此值为\"admin\"。"
+"AdminPwd 指定管理服务器用于登录的密码。<br />默认情况下,此值为\"admin\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
-"AdminUser 指定管理服务器用于登录的用户名。<br>默认情况下,此值为\"admin\"。"
+"AdminUser 指定管理服务器用于登录的用户名。<br />默认情况下,此值为\"admin\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -71,10 +71,10 @@ msgstr "资源目录"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir指定管理服务器用于加载资源的本地目录。如果此值为空,则使用statik从可"
-"执行文件中加载资源。<br>默认情况下,此值为空。"
+"执行文件中加载资源。<br />默认情况下,此值为空。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
 msgid "Collecting data ..."
@@ -145,20 +145,20 @@ msgstr "HTTP 用户"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
 "HeartBeatInterval 用于指定向服务器发送心跳包的间隔(以秒为单位)。不建议更改"
-"此值。<br>默认情况下,此值为 30。"
+"此值。<br />默认情况下,此值为 30。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout 用于指定多久未收到心跳包后断开连接(以秒为单位)。不建议更改"
-"此值。<br>默认情况下,此值为 90。"
+"此值。<br />默认情况下,此值为 90。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -175,10 +175,10 @@ msgstr "主机头重写"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
-"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。<br>"
+"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。<br />"
 "默认情况下,从\"http_proxy\"环境变量中读取此值。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
@@ -222,19 +222,19 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel 指定最小的日志级别。有效值为\"trace\", \"debug\", \"info\", \"warn"
-"\"和\"error\"。<br>默认情况下,此值为\"info\"。"
+"\"和\"error\"。<br />默认情况下,此值为\"info\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit 控制客户端在尝试登录失败后是否应退出。如果为 false,客户端将重"
-"试,直到登录成功。<br>默认情况下,此值为 true。"
+"试,直到登录成功。<br />默认情况下,此值为 true。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -259,11 +259,11 @@ msgstr "协议"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocol 指定在与服务器交互时要使用的协议。有效值为\"tcp\"、\"kcp\"和"
-"\"websocket\"。<br>默认情况下,此值为\"tcp\"。"
+"\"websocket\"。<br />默认情况下,此值为\"tcp\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
 msgid "Proxy Settings"
@@ -277,11 +277,11 @@ msgstr "代理类型"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType 指定此代理的类型。有效值包括\"tcp\"、\"udp\"、\"http\"、\"https"
-"\"、\"stcp\"和\"xtcp\"。<br>默认情况下,此值为\"tcp\"。"
+"\"、\"stcp\"和\"xtcp\"。<br />默认情况下,此值为\"tcp\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
 msgid "RUNNING"
@@ -317,16 +317,16 @@ msgstr "服务器端口"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
 msgstr ""
-"ServerAddr 指定要连接到的服务器的地址。<br>默认情况下,此值为\"0.0.0.0\"。"
+"ServerAddr 指定要连接到的服务器的地址。<br />默认情况下,此值为\"0.0.0.0\"。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
-msgstr "ServerPort 指定要连接到的服务器端口。<br>默认情况下,此值为 7000。"
+msgstr "ServerPort 指定要连接到的服务器端口。<br />默认情况下,此值为 7000。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
 msgid "Sk"
@@ -359,11 +359,11 @@ msgstr "TLSEnable 指定在与服务器通信时是否应使用 TLS。"
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux 切换 TCP 流多路复用。这允许来自客户端的多个请求共享单个 TCP 连接。如果"
-"此值为 true,则服务器必须启用 TCP 多路复用。<br>默认情况下,此值为 true。"
+"此值为 true,则服务器必须启用 TCP 多路复用。<br />默认情况下,此值为 true。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
 msgid ""
@@ -379,26 +379,26 @@ msgstr "令牌"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token 指定用于创建要发送到服务器的密钥的授权令牌。服务器必须具有匹配的令牌才"
-"能成功进行授权。<br>默认情况下,此值为空。"
+"能成功进行授权。<br />默认情况下,此值为空。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
-"UseCompression 控制是否压缩与服务器的通信。<br>默认情况下,此值为 false。"
+"UseCompression 控制是否压缩与服务器的通信。<br />默认情况下,此值为 false。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption 控制是否加密与服务器的通信。使用服务器和客户端配置中提供的令牌"
-"来完成加密。<br>默认情况下,此值为 false。"
+"来完成加密。<br />默认情况下,此值为 false。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -408,10 +408,10 @@ msgstr "用户"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "User 为代理名称指定前缀,以将它们与其他客户端区分开来。如果此值不为空,则代理"
-"名称将自动更改为\"{user}.{proxy_name}\"。<br>默认情况下,此值为空。"
+"名称将自动更改为\"{user}.{proxy_name}\"。<br />默认情况下,此值为空。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
index ead5aa7a16da11eb6815fa6b65686e1808ba3e63..d59acb634d8aa4f4d6162784b33376952b8ac190 100644 (file)
@@ -36,31 +36,31 @@ msgstr "管理員用戶"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26
 msgid ""
-"AdminAddr specifies the address that the admin server binds to.<br>By "
+"AdminAddr specifies the address that the admin server binds to.<br />By "
 "default, this value is \"127.0.0.1\"."
-msgstr "AdminAddr指定管理伺服器綁定到的位址. <br>預設況下, 此值為“127.0.0.1”."
+msgstr "AdminAddr指定管理伺服器綁定到的位址. <br />預設況下, 此值為“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.<br>By default, this value "
+"value is 0, the admin server will not be started.<br />By default, this value "
 "is 0."
 msgstr ""
-"AdminPort指定管理伺服器監聽的埠號. 如果此值為0, 則不會啟動管理伺服器. <br>預"
+"AdminPort指定管理伺服器監聽的埠號. 如果此值為0, 則不會啟動管理伺服器. <br />預"
 "設情況下, 此值為0."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29
 msgid ""
 "AdminPwd specifies the password that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
-msgstr "AdminPwd指定管理伺服器用於登錄的密碼. <br>預設情況下, 此值為“admin”."
+"<br />By default, this value is \"admin\"."
+msgstr "AdminPwd指定管理伺服器用於登錄的密碼. <br />預設情況下, 此值為“admin”."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28
 msgid ""
 "AdminUser specifies the username that the admin server will use for login."
-"<br>By default, this value is \"admin\"."
+"<br />By default, this value is \"admin\"."
 msgstr ""
-"AdminUser指定管理伺服器用於登錄的用戶名稱. <br>預設情況下, 此值為“admin”."
+"AdminUser指定管理伺服器用於登錄的用戶名稱. <br />預設情況下, 此值為“admin”."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30
 msgid "Assets dir"
@@ -70,10 +70,10 @@ msgstr "資產目錄"
 msgid ""
 "AssetsDir specifies the local directory that the admin server will load "
 "resources from. If this value is \"\", assets will be loaded from the "
-"bundled executable using statik.<br>By default, this value is \"\"."
+"bundled executable using statik.<br />By default, this value is \"\"."
 msgstr ""
 "AssetsDir指定管理伺服器將從中加載資源的本地目錄. 如果此值為“”, 將使用statik從"
-"捆綁的可執行文件中加載資產. <br>預設情況下, 此值為“”."
+"捆綁的可執行文件中加載資產. <br />預設情況下, 此值為“”."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:168
 msgid "Collecting data ..."
@@ -144,20 +144,20 @@ msgstr "HTTP用戶"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid ""
 "HeartBeatInterval specifies at what interval heartbeats are sent to the "
-"server, in seconds. It is not recommended to change this value.<br>By "
+"server, in seconds. It is not recommended to change this value.<br />By "
 "default, this value is 30."
 msgstr ""
-"HeartBeatInterval以秒為單位指定將心跳發送到伺服器的間隔. 不建議更改此值. <br>"
+"HeartBeatInterval以秒為單位指定將心跳發送到伺服器的間隔. 不建議更改此值. <br />"
 "預設情況下, 此值為30."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37
 msgid ""
 "HeartBeatTimeout specifies the maximum allowed heartbeat response delay "
 "before the connection is terminated, in seconds. It is not recommended to "
-"change this value.<br>By default, this value is 90."
+"change this value.<br />By default, this value is 90."
 msgstr ""
 "HeartBeatTimeout指定終止連接之前允許的最大心跳響應延遲, 以秒為單位. 不建議更"
-"改此值. <br>預設情況下, 此值為90."
+"改此值. <br />預設情況下, 此值為90."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36
 msgid "Heartbeat interval"
@@ -174,11 +174,11 @@ msgstr "主機標頭重置"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22
 msgid ""
 "HttpProxy specifies a proxy address to connect to the server through. If "
-"this value is \"\", the server will be connected to directly.<br>By default, "
+"this value is \"\", the server will be connected to directly.<br />By default, "
 "this value is read from the \"http_proxy\" environment variable."
 msgstr ""
 "HttpProxy指定通過其連接到伺服器的代理位址. 如果此值為“”, 則伺服器將直接連接. "
-"<br>預設情況下, 將從環境變量“http_proxy”中讀取此值."
+"<br />預設情況下, 將從環境變量“http_proxy”中讀取此值."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:50
 msgid "If remote_port is 0, frps will assign a random port for you"
@@ -221,19 +221,19 @@ 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\".<br>By default, this value is \"info\"."
+"\", \"info\", \"warn\", and \"error\".<br />By default, this value is \"info\"."
 msgstr ""
 "LogLevel指定最低日誌級別. 有效值為“trace”, “debug”, “ info”, “warn”, "
-"和“error”. <br>預設情況下, 此值為“info”."
+"和“error”. <br />預設情況下, 此值為“info”."
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33
 msgid ""
 "LoginFailExit controls whether or not the client should exit after a failed "
 "login attempt. If false, the client will retry until a login attempt "
-"succeeds.<br>By default, this value is true."
+"succeeds.<br />By default, this value is true."
 msgstr ""
 "LoginFailExit控制在嘗試登錄失敗後客戶端是否應退出。如果為false,則客戶端將重"
-"試,直到成功登錄為止。<br>預設情況下,此值為true。"
+"試,直到成功登錄為止。<br />預設情況下,此值為true。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143
 msgid "NOT RUNNING"
@@ -258,11 +258,11 @@ msgstr "協定"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34
 msgid ""
 "Protocol specifies the protocol to use when interacting with the server. "
-"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this "
+"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "Protocol指定與伺服器交互時要使用的協定。有效值為“ tcp”,“ kcp”和“ "
-"websocket”。<br>預設情況下,此值為“ tcp”。"
+"websocket”。<br />預設情況下,此值為“ tcp”。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:188
 msgid "Proxy Settings"
@@ -276,11 +276,11 @@ msgstr "代理類型"
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42
 msgid ""
 "ProxyType specifies the type of this proxy. Valid values include \"tcp\", "
-"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this "
+"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this "
 "value is \"tcp\"."
 msgstr ""
 "ProxyType指定此代理的類型。有效值包括“ tcp”,“ udp”,“ http”,“ https”,“ "
-"stcp”和“ xtcp”。<br>預設情況下,此值為“ tcp”。"
+"stcp”和“ xtcp”。<br />預設情況下,此值為“ tcp”。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
 msgid "RUNNING"
@@ -316,15 +316,15 @@ msgstr "伺服器埠號"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20
 msgid ""
-"ServerAddr specifies the address of the server to connect to.<br>By default, "
+"ServerAddr specifies the address of the server to connect to.<br />By default, "
 "this value is \"0.0.0.0\"."
-msgstr "ServerAddr指定要連接的伺服器的位址。<br>預設情況下,此值為“ 0.0.0.0”。"
+msgstr "ServerAddr指定要連接的伺服器的位址。<br />預設情況下,此值為“ 0.0.0.0”。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21
 msgid ""
-"ServerPort specifies the port to connect to the server on.<br>By default, "
+"ServerPort specifies the port to connect to the server on.<br />By default, "
 "this value is 7000."
-msgstr "ServerPort指定用於連接伺服器的埠號。<br>預設情況下,此值為7000。"
+msgstr "ServerPort指定用於連接伺服器的埠號。<br />預設情況下,此值為7000。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:68
 msgid "Sk"
@@ -357,11 +357,11 @@ msgstr "TLSEnable指定與伺服器通信時是否應使用TLS。"
 msgid ""
 "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a "
 "client to share a single TCP connection. If this value is true, the server "
-"must have TCP multiplexing enabled as well.<br>By default, this value is "
+"must have TCP multiplexing enabled as well.<br />By default, this value is "
 "true."
 msgstr ""
 "TcpMux切換TCP串流多路複用。這允許來自客戶端的多個請求共享一個TCP連接。如果此"
-"值為true,則伺服器也必須啟用TCP複用。<br>預設情況下,此值為true。"
+"值為true,則伺服器也必須啟用TCP複用。<br />預設情況下,此值為true。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38
 msgid ""
@@ -377,26 +377,26 @@ msgstr "權杖"
 msgid ""
 "Token specifies the authorization token used to create keys to be sent to "
 "the server. The server must have a matching token for authorization to "
-"succeed. <br>By default, this value is \"\"."
+"succeed. <br />By default, this value is \"\"."
 msgstr ""
 "Token權杖指定用於創建要發送到伺服器的密鑰的授權金鑰。服務器必須具有匹配的權杖"
-"才能授權成功。 <br>預設情況下,此值為“”。"
+"才能授權成功。 <br />預設情況下,此值為“”。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44
 msgid ""
 "UseCompression controls whether or not communication with the server will be "
-"compressed.<br>By default, this value is false."
+"compressed.<br />By default, this value is false."
 msgstr ""
-"UseCompression控制是否壓縮與伺服器的通信。<br>預設情況下,此值為false。"
+"UseCompression控制是否壓縮與伺服器的通信。<br />預設情況下,此值為false。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43
 msgid ""
 "UseEncryption controls whether or not communication with the server will be "
 "encrypted. Encryption is done using the tokens supplied in the server and "
-"client configuration.<br>By default, this value is false."
+"client configuration.<br />By default, this value is false."
 msgstr ""
 "UseEncryption控制是否加密與伺服器的通信。使用伺服器和客戶端配置中提供的權杖來"
-"完成加密。<br>預設情況下,此值為false。"
+"完成加密。<br />預設情況下,此值為false。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32
 msgid "User"
@@ -406,10 +406,10 @@ msgstr "用戶"
 msgid ""
 "User specifies a prefix for proxy names to distinguish them from other "
 "clients. If this value is not \"\", proxy names will automatically be "
-"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"."
+"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"."
 msgstr ""
 "用戶為代理名稱指定前綴,以將其與其他客戶端區分開。如果此值不是“”,則代理名稱"
-"將自動更改為“ {user}。{proxy_name}”。<br>預設情況下,此值為“”。"
+"將自動更改為“ {user}。{proxy_name}”。<br />預設情況下,此值為“”。"
 
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:141
 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:143