diff --git a/applications/luci-openvpn/luasrc/model/cbi/openvpn-advanced.lua b/applications/luci-openvpn/luasrc/model/cbi/openvpn-advanced.lua
index 8782cce92b..14c4974f66 100644
--- a/applications/luci-openvpn/luasrc/model/cbi/openvpn-advanced.lua
+++ b/applications/luci-openvpn/luasrc/model/cbi/openvpn-advanced.lua
@@ -13,190 +13,191 @@ $Id$
]]--
require("luci.ip")
+require("luci.model.uci")
local knownParams = {
--
- -- Widget Name Optn. Default(s)
+ -- Widget Name Default(s) Option(s) Description
--
{ "service", {
-- initialisation and daemon options
- { ListValue, "verb", { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 } },
- { Flag, "mlock", 0 },
- { Flag, "disable_occ", 0 },
- -- { Value, "user", "root" },
- -- { Value, "group", "root" },
- { Value, "cd", "/etc/openvpn" },
- { Value, "chroot", "/var/run" },
- -- { Value, "daemon", "Instance-Name" },
- -- { Value, "syslog", "Instance-Name" },
- { Flag, "passtos", 0 },
- -- { Value, "inetd", "nowait Instance-Name" },
- { Value, "log", "/var/log/openvpn.log" },
- { Value, "log_append", "/var/log/openvpn.log" },
- { Flag, "suppress_timestamps", 0 },
- -- { Value, "writepid", "/var/run/openvpn.pid" },
- { Value, "nice", 0 },
- { Flag, "fast_io", 0 },
- { Value, "echo", "some params echoed to log" },
- { ListValue, "remap_usr1", { "SIGHUP", "SIGTERM" } },
- { Value, "status", "/var/run/openvpn.status 5" },
- { Value, "status_version", { 1, 2 } }, -- status
- { Value, "mute", 5 },
+ { ListValue, "verb", { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, translate("Set output verbosity") },
+ { Flag, "mlock", 0, translate("Disable Paging") },
+ { Flag, "disable_occ", 0, translate("Disable options consistency check") },
+ -- { Value, "user", "root", translate("Set UID to user") },
+ -- { Value, "group", "root", translate("Set GID to group") },
+ { Value, "cd", "/etc/openvpn", translate("Change to directory before initialization") },
+ { Value, "chroot", "/var/run", translate("Chroot to directory after initialization") },
+ -- { Value, "daemon", "Instance-Name", translate("Daemonize after initialization") },
+ -- { Value, "syslog", "Instance-Name", translate("Output to syslog and do not daemonize") },
+ { Flag, "passtos", 0, translate("TOS passthrough (applies to IPv4 only)") },
+ -- { Value, "inetd", "nowait Instance-Name", translate("Run as an inetd or xinetd server") },
+ { Value, "log", "/var/log/openvpn.log", translate("Write log to file") },
+ { Value, "log_append", "/var/log/openvpn.log", translate("Append log to file") },
+ { Flag, "suppress_timestamps", 0, translate("Don't log timestamps") },
+ -- { Value, "writepid", "/var/run/openvpn.pid", translate("Write process ID to file") },
+ { Value, "nice", 0, translate("Change process priority") },
+ { Flag, "fast_io", 0, translate("Optimize TUN/TAP/UDP writes") },
+ { Value, "echo", "some params echoed to log", translate("Echo parameters to log") },
+ { ListValue, "remap_usr1", { "SIGHUP", "SIGTERM" }, translate("Remap SIGUSR1 signals") },
+ { Value, "status", "/var/run/openvpn.status 5", translate("Write status to file every n seconds") },
+ { Value, "status_version", { 1, 2 }, translate("Status file format version") }, -- status
+ { Value, "mute", 5, translate("Limit repeated log messages") },
- { Value, "up", "/usr/bin/ovpn-up" },
- { Value, "up_delay", 5 },
- { Value, "down", "/usr/bin/ovpn-down" },
- { Flag, "down_pre", 0 },
- { Flag, "up_restart", 0 },
- { Value, "route_up", "/usr/bin/ovpn-routeup" },
- { Value, "ipchange", "/usr/bin/ovpn-ipchange", { mode="p2p" } },
- { DynamicList, "setenv", { "VAR1 value1", "VAR2 value2" } },
- { Value, "tls_verify", "/usr/bin/ovpn-tlsverify" },
- { Value, "client_connect", "/usr/bin/ovpn-clientconnect" },
- { Flag, "client_disconnect", 0 },
- { Value, "learn_address", "/usr/bin/ovpn-learnaddress" },
- { Value, "auth_user_pass_verify", "/usr/bin/ovpn-userpass via-env" },
- { ListValue, "script_security", { 0, 1, 2, 3 }, {mode="server" } },
+ { Value, "up", "/usr/bin/ovpn-up", translate("Shell cmd to execute after tun device open") },
+ { Value, "up_delay", 5, translate("Delay tun/tap open and up script execution") },
+ { Value, "down", "/usr/bin/ovpn-down", translate("Shell cmd to run after tun device close") },
+ { Flag, "down_pre", 0, translate("Call down cmd/script before TUN/TAP close") },
+ { Flag, "up_restart", 0, translate("Run up/down scripts for all restarts") },
+ { Value, "route_up", "/usr/bin/ovpn-routeup", translate("Execute shell cmd after routes are added") },
+ { Value, "ipchange", "/usr/bin/ovpn-ipchange", { mode="p2p" }, translate("Execute shell command on remote ip change") },
+ { DynamicList, "setenv", { "VAR1 value1", "VAR2 value2" }, translate("Pass environment variables to script") },
+ { Value, "tls_verify", "/usr/bin/ovpn-tlsverify", translate("Shell command to verify X509 name") },
+ { Value, "client_connect", "/usr/bin/ovpn-clientconnect", translate("Run script cmd on client connection") },
+ { Flag, "client_disconnect", 0, translate("Run script cmd on client disconnection") },
+ { Value, "learn_address", "/usr/bin/ovpn-learnaddress", translate("Executed in server mode whenever an IPv4 address/route or MAC address is added to OpenVPN's internal routing table") },
+ { Value, "auth_user_pass_verify", "/usr/bin/ovpn-userpass via-env", translate("Executed in server mode on new client connections, when the client is still untrusted") },
+ { ListValue, "script_security", { 0, 1, 2, 3 }, {mode="server" }, translate("Policy level over usage of external programs and scripts") },
} },
{ "networking", {
-- socket config
- { ListValue, "mode", { "p2p", "server" } },
- { Value, "local", "0.0.0.0" },
- { Value, "port", 1194 },
- { Value, "lport", 1194 },
- { Value, "rport", 1194 },
- { Flag, "float", 0 },
- { Flag, "nobind", 0 },
+ { ListValue, "mode", { "p2p", "server" }, translate("Major mode") },
+ { Value, "local", "0.0.0.0", translate("Local host name or ip address") },
+ { Value, "port", 1194, translate("TCP/UDP port # for both local and remote") },
+ { Value, "lport", 1194, translate("TCP/UDP port # for local (default=1194)") },
+ { Value, "rport", 1194, translate("TCP/UDP port # for remote (default=1194)") },
+ { Flag, "float", 0, translate("Allow remote to change its IP or port") },
+ { Flag, "nobind", 0, translate("Do not bind to local address and port") },
- { Value, "dev", "tun0" },
- { ListValue, "dev_type", { "tun", "tap" } },
- { Value, "dev_node", "/dev/net/tun" },
- { Flag, "tun_ipv6", 0 },
+ { Value, "dev", "tun0", translate("tun/tap device") },
+ { ListValue, "dev_type", { "tun", "tap" }, translate("Type of used device") },
+ { Value, "dev_node", "/dev/net/tun", translate("Use tun/tap device node") },
+ { Flag, "tun_ipv6", 0, translate("Make tun device IPv6 capable") },
- { Value, "ifconfig", "10.200.200.3 10.200.200.1" },
- { Flag, "ifconfig_noexec", 0 },
- { Flag, "ifconfig_nowarn", 0 },
+ { Value, "ifconfig", "10.200.200.3 10.200.200.1", translate("Set tun/tap adapter parameters") },
+ { Flag, "ifconfig_noexec", 0, translate("Don't actually execute ifconfig") },
+ { Flag, "ifconfig_nowarn", 0, translate("Don't warn on ifconfig inconsistencies") },
- { DynamicList, "route", "10.123.0.0 255.255.0.0" },
- { Value, "route_gateway", "10.234.1.1" },
- { Value, "route_delay", 0 },
- { Flag, "route_noexec", 0 },
+ { DynamicList, "route", "10.123.0.0 255.255.0.0", translate("Add route after establishing connection") },
+ { Value, "route_gateway", "10.234.1.1", translate("Specify a default gateway for routes") },
+ { Value, "route_delay", 0, translate("Delay n seconds after connection") },
+ { Flag, "route_noexec", 0, translate("Don't add routes automatically") },
- { ListValue, "mtu_disc", { "yes", "maybe", "no" } },
- { Flag, "mtu_test", 0 },
- { Flag, "comp_lzo", 0 },
- { Flag, "comp_noadept", 0, { comp_lzo=1 } },
- { Value, "link_mtu", 1500 },
- { Value, "tun_mtu", 1500 },
- { Value, "tun_mtu_extra", 1500 },
- { Value, "fragment", 1500, { proto="udp" } },
- { Value, "mssfix", 1500, { proto="udp" } },
- { Value, "sndbuf", 65536 },
- { Value, "rcvbuf", 65536 },
- { Value, "txqueuelen", 100 },
- { Value, "shaper", 10240 },
+ { ListValue, "mtu_disc", { "yes", "maybe", "no" }, translate("Enable Path MTU discovery") },
+ { Flag, "mtu_test", 0, translate("Empirically measure MTU") },
+ { Flag, "comp_lzo", 0, translate("Use fast LZO compression") },
+ { Flag, "comp_noadapt", 0, { comp_lzo=1 }, translate("Don't use adaptive lzo compression") },
+ { Value, "link_mtu", 1500, translate("Set TCP/UDP MTU") },
+ { Value, "tun_mtu", 1500, translate("Set tun/tap device MTU") },
+ { Value, "tun_mtu_extra", 1500, translate("Set tun/tap device overhead") },
+ { Value, "fragment", 1500, { proto="udp" }, translate("Enable internal datagram fragmentation") },
+ { Value, "mssfix", 1500, { proto="udp" }, translate("Set upper bound on TCP MSS") },
+ { Value, "sndbuf", 65536, translate("Set the TCP/UDP send buffer size") },
+ { Value, "rcvbuf", 65536, translate("Set the TCP/UDP receive buffer size") },
+ { Value, "txqueuelen", 100, translate("Set tun/tap TX queue length") },
+ { Value, "shaper", 10240, translate("Shaping for peer bandwidth") },
- { Value, "inactive", 240 },
- { Value, "keepalive", "10 60" },
- { Value, "ping", 30 },
- { Value, "ping_exit", 120 },
- { Value, "ping_restart", 60 },
- { Flag, "ping_timer_rem", 0 },
+ { Value, "inactive", 240, translate("tun/tap inactivity timeout") },
+ { Value, "keepalive", "10 60", translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") },
+ { Value, "ping", 30, translate("Ping remote every n seconds over TCP/UDP port") },
+ { Value, "ping_exit", 120, translate("Remote ping timeout") },
+ { Value, "ping_restart", 60, translate("Restart after remote ping timeout") },
+ { Flag, "ping_timer_rem", 0, translate("Only process ping timeouts if routes exist") },
- { Flag, "persist_tun", 0 },
- { Flag, "persist_key", 0 },
- { Flag, "persist_local_ip", 0 },
- { Flag, "persist_remote_ip", 0 },
+ { Flag, "persist_tun", 0, translate("Keep tun/tap device open on restart") },
+ { Flag, "persist_key", 0, translate("Don't re-read key on restart") },
+ { Flag, "persist_local_ip", 0, translate("Keep local IP address on restart") },
+ { Flag, "persist_remote_ip", 0, translate("Keep remote IP address on restart") },
-- management channel
- { Value, "management", "127.0.0.1 31194 /etc/openvpn/mngmt-pwds" },
- { Flag, "management_query_passwords", 0 }, -- management
- { Flag, "management_hold", 0 }, -- management
- { Value, "management_log_cache", 100 }, -- management
- { ListValue, "topology", { "net30", "p2p", "subnet" }, {dev_type="tun" } },
+ { Value, "management", "127.0.0.1 31194 /etc/openvpn/mngmt-pwds", translate("Enable management interface on IP port") },
+ { Flag, "management_query_passwords", 0, translate("Query management channel for private key") }, -- management
+ { Flag, "management_hold", 0, translate("Start OpenVPN in a hibernating state") }, -- management
+ { Value, "management_log_cache", 100, translate("Number of lines for log file history") }, -- management
+ { ListValue, "topology", { "net30", "p2p", "subnet" }, {dev_type="tun" }, translate("'net30', 'p2p', or 'subnet'") },
} },
{ "vpn", {
- { Value, "server", "10.200.200.0 255.255.255.0", { server_mode="1" } },
- { Value, "server_bridge", "10.200.200.1 255.255.255.0 10.200.200.200 10.200.200.250", { server_mode="1" } },
- { DynamicList, "push", { "redirect-gateway", "comp-lzo" }, { server_mode="1" } },
- { Flag, "push_reset", 0, { server_mode="1" } },
- { Flag, "disable", 0, { server_mode="1" } },
- { Value, "ifconfig_pool", "10.200.200.100 10.200.200.150 255.255.255.0", { server_mode="1" } },
- { Value, "ifconfig_pool_persist", "/etc/openvpn/ipp.txt 600", { server_mode="1" } },
- { Flag, "ifconfig_pool_linear", 0, { server_mode="1" } },
- { Value, "ifconfig_push", "10.200.200.1 255.255.255.255", { server_mode="1" } },
- { Value, "iroute", "10.200.200.0 255.255.255.0", { server_mode="1" } },
- { Flag, "client_to_client", 0, { server_mode="1" } },
- { Flag, "duplicate_cn", 0, { server_mode="1" } },
- { Value, "client_config_dir", "/etc/openvpn/ccd", { server_mode="1" } },
- { Flag, "ccd_exclusive", 0, { server_mode="1" } },
- { Value, "tmp_dir", "/var/run/openvpn", { server_mode="1" } },
- { Value, "hash_size", "256 256", { server_mode="1" } },
- { Value, "bcast_buffers", 256, { server_mode="1" } },
- { Value, "tcp_queue_limit", 64, { server_mode="1" } },
- { Value, "max_clients", 10, { server_mode="1" } },
- { Value, "max_routes_per_client", 256, { server_mode="1" } },
- { Value, "connect_freq", "3 10", { server_mode="1" } },
- { Flag, "client_cert_not_required", 0, { server_mode="1" } },
- { Flag, "username_as_common_name", 0, { server_mode="1" } },
- { Flag, "client", 0, { server_mode="0" }, { server_mode="" } },
- { Flag, "pull", 0, { client="1" } },
- { Value, "auth_user_pass", "/etc/openvpn/userpass.txt", { client="1" } },
- { ListValue, "auth_retry", { "none", "nointeract", "interact" }, { client="1" } },
- { Value, "explicit_exit_notify", 1, { client="1" } },
- { DynamicList, "remote", "1.2.3.4", { client="1" } }, -- client
- { Flag, "remote_random", 1, { client="1" } }, -- client
- { ListValue, "proto", { "udp", "tcp-client", "tcp-server" }, { client="1" } },
- { Value, "connect_retry", 5, { proto="tcp-client" }, { client="1" } }, -- client && proto=tcp-client
- { Value, "http_proxy_server", "192.168.1.100 8080", { client="1" } }, -- client
- { Flag, "http_proxy_retry", 0, { client="1" } }, -- client && http_proxy_server
- { Value, "http_proxy_timeout", 5, { client="1" } }, -- client && http_proxy_server
- { DynamicList, "http_proxy_option", { "VERSION 1.0", "AGENT OpenVPN/2.0.9" }, { client="1" } }, -- client && http_proxy_server
- { Value, "socks_proxy_server", "192.168.1.200 1080", { client="1" } }, -- client
- { Value, "socks_proxy_retry", 5, { client="1" } }, -- client && socks_proxy_server
- { Value, "resolv_retry", "infinite", { client="1" } }, -- client
- { ListValue, "redirect_gateway", { "", "local", "def1", "local def1" }, { client="1" } }, -- client
+ { Value, "server", "10.200.200.0 255.255.255.0", { server_mode="1" }, translate("Configure server mode") },
+ { Value, "server_bridge", "10.200.200.1 255.255.255.0 10.200.200.200 10.200.200.250", { server_mode="1" }, translate("Configure server bridge") },
+ { DynamicList, "push", { "redirect-gateway", "comp-lzo" }, { server_mode="1" }, translate("Push options to peer") },
+ { Flag, "push_reset", 0, { server_mode="1" }, translate("Don't inherit global push options") },
+ { Flag, "disable", 0, { server_mode="1" }, translate("Client is disabled") },
+ { Value, "ifconfig_pool", "10.200.200.100 10.200.200.150 255.255.255.0", { server_mode="1" }, translate("Set aside a pool of subnets") },
+ { Value, "ifconfig_pool_persist", "/etc/openvpn/ipp.txt 600", { server_mode="1" }, translate("Persist/unpersist ifconfig-pool") },
+-- { Flag, "ifconfig_pool_linear", 0, { server_mode="1" }, translate("Use individual addresses rather than /30 subnets") }, -- deprecated and replaced by --topology p2p
+ { Value, "ifconfig_push", "10.200.200.1 255.255.255.255", { server_mode="1" }, translate("Push an ifconfig option to remote") },
+ { Value, "iroute", "10.200.200.0 255.255.255.0", { server_mode="1" }, translate("Route subnet to client") },
+ { Flag, "client_to_client", 0, { server_mode="1" }, translate("Allow client-to-client traffic") },
+ { Flag, "duplicate_cn", 0, { server_mode="1" }, translate("Allow multiple clients with same certificate") },
+ { Value, "client_config_dir", "/etc/openvpn/ccd", { server_mode="1" }, translate("Directory for custom client config files") },
+ { Flag, "ccd_exclusive", 0, { server_mode="1" }, translate("Refuse connection if no custom client config") },
+ { Value, "tmp_dir", "/var/run/openvpn", { server_mode="1" }, translate("Temporary directory for client-connect return file") },
+ { Value, "hash_size", "256 256", { server_mode="1" }, translate("Set size of real and virtual address hash tables") },
+ { Value, "bcast_buffers", 256, { server_mode="1" }, translate("Number of allocated broadcast buffers") },
+ { Value, "tcp_queue_limit", 64, { server_mode="1" }, translate("Maximum number of queued TCP output packets") },
+ { Value, "max_clients", 10, { server_mode="1" }, translate("Allowed maximum of connected clients") },
+ { Value, "max_routes_per_client", 256, { server_mode="1" }, translate("Allowed maximum of internal") },
+ { Value, "connect_freq", "3 10", { server_mode="1" }, translate("Allowed maximum of new connections") },
+ { Flag, "client_cert_not_required", 0, { server_mode="1" }, translate("Don't require client certificate") },
+ { Flag, "username_as_common_name", 0, { server_mode="1" }, translate("Use username as common name") },
+ { Flag, "client", 0, { server_mode="0" }, { server_mode="" }, translate("Configure client mode") },
+ { Flag, "pull", 0, { client="1" }, translate("Accept options pushed from server") },
+ { Value, "auth_user_pass", "/etc/openvpn/userpass.txt", { client="1" }, translate("Authenticate using username/password") },
+ { ListValue, "auth_retry", { "none", "nointeract", "interact" }, { client="1" }, translate("Handling of authentication failures") },
+ { Value, "explicit_exit_notify", 1, { client="1" }, translate("Send notification to peer on disconnect") },
+ { DynamicList, "remote", "1.2.3.4", { client="1" }, translate("Remote host name or ip address") }, -- client
+ { Flag, "remote_random", 1, { client="1" }, translate("Randomly choose remote server") }, -- client
+ { ListValue, "proto", { "udp", "tcp-client", "tcp-server" }, { client="1" }, translate("Use protocol") },
+ { Value, "connect_retry", 5, { proto="tcp-client" }, { client="1" }, translate("Connection retry interval") }, -- client && proto=tcp-client
+ { Value, "http_proxy", "192.168.1.100 8080", { client="1" }, translate("Connect to remote host through an HTTP proxy") }, -- client
+ { Flag, "http_proxy_retry", 0, { client="1" }, translate("Retry indefinitely on HTTP proxy errors") }, -- client && http_proxy
+ { Value, "http_proxy_timeout", 5, { client="1" }, translate("Proxy timeout in seconds") }, -- client && http_proxy
+ { DynamicList, "http_proxy_option", { "VERSION 1.0", "AGENT OpenVPN/2.0.9" }, { client="1" }, translate("Set extended HTTP proxy options") }, -- client && http_proxy
+ { Value, "socks_proxy", "192.168.1.200 1080", { client="1" }, translate("Connect through Socks5 proxy") }, -- client
+ { Value, "socks_proxy_retry", 5, { client="1" }, translate("Retry indefinitely on Socks proxy errors") }, -- client && socks_proxy
+ { Value, "resolv_retry", "infinite", { client="1" }, translate("If hostname resolve fails, retry") }, -- client
+ { ListValue, "redirect_gateway", { "", "local", "def1", "local def1" }, { client="1" }, translate("Automatically redirect default route") }, -- client
} },
{ "cryptography", {
- { Value, "secret", "/etc/openvpn/secret.key 1" },
- { Value, "auth", "SHA1" }, -- parse
- { Value, "cipher", "BF-CBC" }, -- parse
- { Value, "keysize", 1024 }, -- parse
- { Value, "engine", "dynamic" }, -- parse
- { Flag, "no_replay", 0 },
- { Value, "replay_window", "64 15" },
- { Flag, "mute_replay_warnings", 0 },
- { Value, "replay_persist", "/var/run/openvpn-replay-state" },
- { Flag, "no_iv", 0 },
- { Flag, "tls_server", 0, { tls_client="" }, { tls_client="0" } },
- { Flag, "tls_client", 0, { tls_server="" }, { tls_server="0" } },
- { FileUpload, "ca", "/etc/easy-rsa/keys/ca.crt" },
- { FileUpload, "dh", "/etc/easy-rsa/keys/dh1024.pem" },
- { FileUpload, "cert", "/etc/easy-rsa/keys/some-client.crt" },
- { FileUpload, "key", "/etc/easy-rsa/keys/some-client.key" },
- { FileUpload, "pkcs12", "/etc/easy-rsa/keys/some-client.pk12" },
- { ListValue, "key_method", { 1, 2 } },
- { Value, "tls_cipher", "DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA:EDH-RSA-DES-CBC3-SHA:EDH-DSS-DES-CBC3-SHA:DES-CBC3-SHA:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA:AES128-SHA:RC4-SHA:RC4-MD5:EDH-RSA-DES-CBC-SHA:EDH-DSS-DES-CBC-SHA:DES-CBC-SHA:EXP-EDH-RSA-DES-CBC-SHA:EXP-EDH-DSS-DES-CBC-SHA:EXP-DES-CBC-SHA:EXP-RC2-CBC-MD5:EXP-RC4-MD5" },
- { Value, "tls_timeout", 2 },
- { Value, "reneg_bytes", 1024 },
- { Value, "reneg_pkts", 100 },
- { Value, "reneg_sec", 3600 },
- { Value, "hand_window", 60 },
- { Value, "tran_window", 3600 },
- { Flag, "single_session", 0 },
- { Flag, "tls_exit", 0 },
- { Value, "tls_auth", "/etc/openvpn/tlsauth.key 1" },
- --{ Value, "askpass", "[file]" },
- { Flag, "auth_nocache", 0 },
- { Value, "tls_remote", "remote_x509_name" },
- { ListValue, "ns_cert_type", { "client", "server" } },
- { ListValue, "remote_cert_tls", { "client", "server" } },
- { Value, "crl_verify", "/etc/easy-rsa/keys/crl.pem" },
+ { Value, "secret", "/etc/openvpn/secret.key 1", translate("Enable Static Key encryption mode (non-TLS)") },
+ { Value, "auth", "SHA1", translate("HMAC authentication for packets") }, -- parse
+ { Value, "cipher", "BF-CBC", translate("Encryption cipher for packets") }, -- parse
+ { Value, "keysize", 1024, translate("Size of cipher key") }, -- parse
+ { Value, "engine", "dynamic", translate("Enable OpenSSL hardware crypto engines") }, -- parse
+ { Flag, "no_replay", 0, translate("Disable replay protection") },
+ { Value, "replay_window", "64 15", translate("Replay protection sliding window size") },
+ { Flag, "mute_replay_warnings", 0, translate("Silence the output of replay warnings") },
+ { Value, "replay_persist", "/var/run/openvpn-replay-state", translate("Persist replay-protection state") },
+ { Flag, "no_iv", 0, translate("Disable cipher initialisation vector") },
+ { Flag, "tls_server", 0, { tls_client="" }, { tls_client="0" }, translate("Enable TLS and assume server role") },
+ { Flag, "tls_client", 0, { tls_server="" }, { tls_server="0" }, translate("Enable TLS and assume client role") },
+ { FileUpload, "ca", "/etc/easy-rsa/keys/ca.crt", translate("Certificate authority") },
+ { FileUpload, "dh", "/etc/easy-rsa/keys/dh1024.pem", translate("Diffie Hellman parameters") },
+ { FileUpload, "cert", "/etc/easy-rsa/keys/some-client.crt", translate("Local certificate") },
+ { FileUpload, "key", "/etc/easy-rsa/keys/some-client.key", translate("Local private key") },
+ { FileUpload, "pkcs12", "/etc/easy-rsa/keys/some-client.pk12", translate("PKCS#12 file containing keys") },
+ { ListValue, "key_method", { 1, 2 }, translate("Enable TLS and assume client role") },
+ { Value, "tls_cipher", "DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA:EDH-RSA-DES-CBC3-SHA:EDH-DSS-DES-CBC3-SHA:DES-CBC3-SHA:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA:AES128-SHA:RC4-SHA:RC4-MD5:EDH-RSA-DES-CBC-SHA:EDH-DSS-DES-CBC-SHA:DES-CBC-SHA:EXP-EDH-RSA-DES-CBC-SHA:EXP-EDH-DSS-DES-CBC-SHA:EXP-DES-CBC-SHA:EXP-RC2-CBC-MD5:EXP-RC4-MD5", translate("TLS cipher") },
+ { Value, "tls_timeout", 2, translate("Retransmit timeout on TLS control channel") },
+ { Value, "reneg_bytes", 1024, translate("Renegotiate data chan. key after bytes") },
+ { Value, "reneg_pkts", 100, translate("Renegotiate data chan. key after packets") },
+ { Value, "reneg_sec", 3600, translate("Renegotiate data chan. key after seconds") },
+ { Value, "hand_window", 60, translate("Timeframe for key exchange") },
+ { Value, "tran_window", 3600, translate("Key transition window") },
+ { Flag, "single_session", 0, translate("Allow only one session") },
+ { Flag, "tls_exit", 0, translate("Exit on TLS negotiation failure") },
+ { Value, "tls_auth", "/etc/openvpn/tlsauth.key 1", translate("Additional authentication over TLS") },
+ --{ Value, "askpass", "[file]", translate("Get PEM password from controlling tty before we daemonize") },
+ { Flag, "auth_nocache", 0, translate("Don't cache --askpass or --auth-user-pass passwords") },
+ { Value, "tls_remote", "remote_x509_name", translate("Only accept connections from given X509 name") },
+ { ListValue, "ns_cert_type", { "client", "server" }, translate("Require explicit designation on certificate") },
+ { ListValue, "remote_cert_tls", { "client", "server" }, translate("Require explicit key usage on certificate") },
+ { Value, "crl_verify", "/etc/easy-rsa/keys/crl.pem", translate("Check peer certificate against a CRL") },
} }
}
@@ -234,8 +235,7 @@ s.anonymous = true
for _, option in ipairs(params) do
local o = s:option(
option[1], option[2],
- translate("openvpn_param_%s" % option[2]),
- translate("openvpn_param_%s_desc" % option[2])
+ option[2], option[4]
)
if option[1] == DummyValue then
diff --git a/applications/luci-openvpn/luasrc/model/cbi/openvpn-basic.lua b/applications/luci-openvpn/luasrc/model/cbi/openvpn-basic.lua
index 4f2f8d9f7a..dc1114b6ef 100644
--- a/applications/luci-openvpn/luasrc/model/cbi/openvpn-basic.lua
+++ b/applications/luci-openvpn/luasrc/model/cbi/openvpn-basic.lua
@@ -27,13 +27,13 @@ local basicParams = {
{ ListValue,"dev_type",{ "tun", "tap" }, translate("Type of used device") },
{ Flag,"tun_ipv6",0, translate("Make tun device IPv6 capable") },
- { Value,"ifconfig","10.200.200.3 10.200.200.1", translate("") },
+ { Value,"ifconfig","10.200.200.3 10.200.200.1", translate("Set tun/tap adapter parameters") },
{ Value,"server","10.200.200.0 255.255.255.0", translate("Configure server mode") },
{ Value,"server_bridge","192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254", translate("Configure server bridge") },
{ Flag,"nobind",0, translate("Do not bind to local address and port") },
{ Flag,"comp_lzo",0, translate("Use fast LZO compression") },
- { Value,"keepalive","10 60", translate("") },
+ { Value,"keepalive","10 60", translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") },
{ ListValue,"proto",{ "udp", "tcp" }, translate("Use protocol") },
diff --git a/po/ca/openvpn.po b/po/ca/openvpn.po
index 9e56364c7a..230d1aa2ad 100644
--- a/po/ca/openvpn.po
+++ b/po/ca/openvpn.po
@@ -8,961 +8,636 @@ msgstr ""
"PO-Revision-Date: 2009-05-28 12:55+0200\n"
"Last-Translator: Eduard Duran \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr "'net30', 'p2p', o 'subnet'"
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "Canvia a configuració bàsica"
+msgid "Accept options pushed from server"
+msgstr "Accepta opcions rebudes del servidor"
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Canvia a configuració avançada"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Activat"
+msgid "Add route after establishing connection"
+msgstr "Afegeix ruta després d'establir connexió"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Iniciat"
+msgid "Additional authentication over TLS"
+msgstr "Autenticació addicional sobre TLS"
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "no"
+msgid "Allow client-to-client traffic"
+msgstr "Permet tràfic client a client"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "sí (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Permet múltiples clients amb el mateix certificat"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Port"
+msgid "Allow only one session"
+msgstr "Permet només una sessió"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocol"
+msgid "Allow remote to change its IP or port"
+msgstr "Permet al remot canviar la seva IP o port"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instància \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr "Màxim de clients connectats pemès"
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "Instàncies OpenVPN"
+msgid "Allowed maximum of internal"
+msgstr "Màxim permès d'interns"
+
+msgid "Allowed maximum of new connections"
+msgstr "Màxim de noves connexions permesès"
+
+msgid "Append log to file"
+msgstr "Afegeix el registre al fitxer"
+
+msgid "Authenticate using username/password"
+msgstr "Autentica utilitzant nom d'usuari/contrasenya"
+
+msgid "Automatically redirect default route"
+msgstr "Readreça automàticament la ruta per defecte"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"A sota hi ha una llista d'instàncies OpenVPN configurades i el seu estat "
"actual"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Configuració del dimoni"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Opcions de xarxa"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Opcions VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Configuració criptogràfica"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Llegeix les opcions de configuració d'un fitxer"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Nom de màquina local o adreça IP"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Nom de màquina remot o adreça IP"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Tria aleatòriament el servidor remot"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Mode major"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Utilitza protocol"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Interval de reintent de connexió"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Temps d'espera de connexió"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Número màxim d'intents de reconnexió"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Intenta aconseguir la configuració de proxy automàticament"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Connecta't a una màquina remota"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Reintenta indefinidament en errors de proxy HTTP"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Temps d'espera màxim de proxy en segons"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Estableix les opcions de proxy HTTP exteses"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Connecta't a través un proxy Socks5"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Reintenta indefinidament en errors de proxy Socks"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Si la resolució del nom de màquina falla, reintenta-ho"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Permet al remot canviar la seva IP o port"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Executa una ordre de consola quan hi hagi un canvi d'IP remot"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Port TCP/UDP tan per local com per remot"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Port TCP/UDP per local (defecte=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Port TCP/UDP per remot (defecte=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Vincula a adreça i port locals"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "No vinculis a adreça i port locals"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "dispositiu tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Tipus de dispositiu utilitzat"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Utilitza un node de dispositiu tun/tap"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Estableix l'adreça de capa d'enllaç del dispositiu tap"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr "'net30', 'p2p', o 'subnet'"
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Fes que el dispositiu tun sigui apte per IPv6"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Configura el dispositiu per fer servir l'adreça IP"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "No executis ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "No alertis d'inconsistències ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Afegeix ruta després d'establir connexió"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Especifica una passarel·la per defecte per rutes"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Especifica una mètrica per defecte per rutes"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "Endarrereix n segons després de la connexió"
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Executa comanda després d'afegir les rutes"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "No afegeixis rutes automàticament"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "No agafis les opcions del servidor"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Readreça automàticament la ruta per defecte"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Passa les variables d'ambient a l'script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Configuració d'ample de banda d'un peer"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Estableix temps d'espera màxims en mode servidor"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "temps d'espera màxim d'inactivitat tun/tap"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Temps d'espera màxim de ping remot"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Reinicia després d'excedir el temps d'espera de ping remot"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Processa l'excés de temps d'espera de pings remots si la ruta existeix"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Ping remot cada n segons sobre port TCP/UDP"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Configura un servidor UDP multi-homed"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Optimitza les escriptures TUN/TAP/UDP"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Remapeja senyals SIGUSR1"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Mantingues el dispositiu tun/tap obert al reiniciar"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Mantingues l'adreça IP remota al reiniciar"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Mantingues l'adreça IP local al reiniciar"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "No rellegeixis la clau al reiniciar"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "Pas TOS (aplica només a IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Estableix la MTU del dispositiu tun/tap"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Estableix la càrrega (overhead) del dispositiu tun/tap"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Estableix la MTU de TCP/UDP"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Activa el Path MTU discovery"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Mesura empíricament l'MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Activa la fragmentació de datagrames interna"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Estableix el límit superior al TCP MSS"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Estableix la mida de memòria intermèdia d'enviament TCP/UDP"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Estableix la mida de memòria intermèdia de recepció TCP/UDP"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Estableix la mida de cua TX de tun/tap"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Desactiva Paging"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Ordre a executar després que s'obri un dispositiu tun"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "Retarda l'obertura tun/tap i l'execució d'script d'activació"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Ordre a executar després que es tanqui un dispositiu tun"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr ""
"Crida l'script/comanda de desactivació abans de tancar el dispositiu TUN/TAP"
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Executa els scripts d'activació/desactivació per tots els reinicis."
+msgid "Certificate authority"
+msgstr "Autoritat de certificat"
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Estableix l'UID per l'usuari"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Estableix el GID al grup"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Chroot al directori després de la inicialització"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Canvia el directori abans de la inicialització"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Dimonitza després d'inicialitzar"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Sortida al syslog i no dimonitzis"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Executa com un servidor inetd o xinetd"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Escriu registre al fitxer"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Afegeix el registre al fitxer"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "No registris les marques horàries"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Escriu l'ID del procés al fitxer"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
msgid "Change process priority"
msgstr "Canvia la prioritat del procés"
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Escriu els paràmetres al registre"
+msgid "Change to directory before initialization"
+msgstr "Canvia el directori abans de la inicialització"
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Estableix el detall de sortida"
+msgid "Check peer certificate against a CRL"
+msgstr "Comprova el certificat de peer contra un CRL"
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Limita els missatges de registre repetits"
+msgid "Chroot to directory after initialization"
+msgstr "Chroot al directori després de la inicialització"
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Escriu l'estat al fitxer cada n segons"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Versió de format de fitxer d'estat"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Desactiva la comprovació de consistència d'opcions"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Mode de proves d'estrés especial"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Utilitza compressió ràpida LZO"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "No utilitzis compressió adaptativa LZO"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Activa la interfície de gestió a IP port"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "La interfície de gestió es connectarà com un client TCP"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Consulta el canal de gestió per una clau privada"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Inicia l'OpenVPN en un estat d'hivernació"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Publica SIGUSR1 en desconnexions de gestió"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Oblida contrasenyes en desconnexions de gestió"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Número de línies per historial de fitxer de registre"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Carrega el mòdul de connectors"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Configura el mode servidor"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Configura el pont de servidor"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Envia opcions al peer"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "No heretis les opcions globals enviades pel servidor"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "Deixa de banda un conjunt de subxarxes"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Utilitza adreces individuals en comptes de subxarxes /30"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Persisteix/deixa de persistir ifconfig-pool"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Envia una opció ifconfig al remot"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Enruta subxarxa al client"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
msgid "Client is disabled"
msgstr "El client està deshabilitat"
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "No requereixis el certificat de client"
+msgid "Configuration category"
+msgstr ""
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Utilitza el nom d'usuari com a nom comú"
+msgid "Configure client mode"
+msgstr "Configura el mode client"
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Script per verificar l'autenticació interactiva"
+msgid "Configure server bridge"
+msgstr "Configura el pont de servidor"
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Permet tràfic client a client"
+msgid "Configure server mode"
+msgstr "Configura el mode servidor"
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Permet múltiples clients amb el mateix certificat"
+msgid "Connect through Socks5 proxy"
+msgstr "Connecta't a través un proxy Socks5"
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Executa l'script en connectar-se el client"
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Executa l'script en desconnectar-te el client"
+msgid "Connection retry interval"
+msgstr "Interval de reintent de connexió"
+
+msgid "Daemonize after initialization"
+msgstr "Dimonitza després d'inicialitzar"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "Retarda l'obertura tun/tap i l'execució d'script d'activació"
+
+msgid "Diffie Hellman parameters"
+msgstr "Paràmetres Diffie-Hellman"
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
msgid "Directory for custom client config files"
msgstr "Directori per fitxers de configuració de client personalitzats"
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
+msgid "Disable Paging"
+msgstr "Desactiva Paging"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Desactiva xifratge de vector d'inicialització"
+
+msgid "Disable options consistency check"
+msgstr "Desactiva la comprovació de consistència d'opcions"
+
+msgid "Disable replay protection"
+msgstr "Desactiva la protecció de reproducció"
+
+msgid "Do not bind to local address and port"
+msgstr "No vinculis a adreça i port locals"
+
+msgid "Don't actually execute ifconfig"
+msgstr "No executis ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "No afegeixis rutes automàticament"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "No desis a la memòria cau contrasenyes --askpass o --auth-user-pass"
+
+msgid "Don't inherit global push options"
+msgstr "No heretis les opcions globals enviades pel servidor"
+
+msgid "Don't log timestamps"
+msgstr "No registris les marques horàries"
+
+msgid "Don't re-read key on restart"
+msgstr "No rellegeixis la clau al reiniciar"
+
+msgid "Don't require client certificate"
+msgstr "No requereixis el certificat de client"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "No utilitzis compressió adaptativa LZO"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "No alertis d'inconsistències ifconfig"
+
+msgid "Echo parameters to log"
+msgstr "Escriu els paràmetres al registre"
+
+msgid "Empirically measure MTU"
+msgstr "Mesura empíricament l'MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Activa motor criptogràfic OpenSSL de maquinari"
+
+msgid "Enable Path MTU discovery"
+msgstr "Activa el Path MTU discovery"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Activa el mode d'encriptació de Clau Estàtica (no-TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Activa el TLS i assumeix el rol de client"
+
+msgid "Enable TLS and assume server role"
+msgstr "Activa el TLS i assumeix el rol de servidor"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Activa la fragmentació de datagrames interna"
+
+msgid "Enable management interface on IP port"
+msgstr "Activa la interfície de gestió a IP port"
+
+msgid "Enabled"
+msgstr "Activat"
+
+msgid "Encryption cipher for packets"
+msgstr "Xifra d'encriptació per paquets"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Executa comanda després d'afegir les rutes"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Executa una ordre de consola quan hi hagi un canvi d'IP remot"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Surt en fallar la negociació TLS"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "Aconsegueix contrasenya PEM de controlar tty abans de dimonitzar"
+
+msgid "HMAC authentication for packets"
+msgstr "Autenticació HMAC per paquets"
+
+msgid "Handling of authentication failures"
+msgstr "Gestió de fallades d'autenticació"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Si la resolució del nom de màquina falla, reintenta-ho"
+
+msgid "Instance \"%s\""
+msgstr "Instància \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Mantingues l'adreça IP local al reiniciar"
+
+msgid "Keep remote IP address on restart"
+msgstr "Mantingues l'adreça IP remota al reiniciar"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Mantingues el dispositiu tun/tap obert al reiniciar"
+
+msgid "Key transition window"
+msgstr "Finestra de transició de clau"
+
+msgid "Limit repeated log messages"
+msgstr "Limita els missatges de registre repetits"
+
+msgid "Local certificate"
+msgstr "Certificat local"
+
+msgid "Local host name or ip address"
+msgstr "Nom de màquina local o adreça IP"
+
+msgid "Local private key"
+msgstr "Clau privada local"
+
+msgid "Major mode"
+msgstr "Mode major"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Fes que el dispositiu tun sigui apte per IPv6"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Número màxim de paquets TCP encuats a la sortida"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Número de memòries intermitges de broadcast assignades"
+
+msgid "Number of lines for log file history"
+msgstr "Número de línies per historial de fitxer de registre"
+
+msgid "Only accept connections from given X509 name"
+msgstr "Accepta connexions només d'un cert nom X509"
+
+msgid "Only process ping timeouts if routes exist"
+msgstr "Processa l'excés de temps d'espera de pings remots si la ruta existeix"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "Instàncies OpenVPN"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Optimitza les escriptures TUN/TAP/UDP"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Sortida al syslog i no dimonitzis"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "Fitxer PKCS#12 contenidor de claus"
+
+msgid "Pass environment variables to script"
+msgstr "Passa les variables d'ambient a l'script"
+
+msgid "Persist replay-protection state"
+msgstr "Persisteix l'estat de protecció de reproducció"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Persisteix/deixa de persistir ifconfig-pool"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Ping remot cada n segons sobre port TCP/UDP"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Protocol"
+msgstr "Protocol"
+
+msgid "Proxy timeout in seconds"
+msgstr "Temps d'espera màxim de proxy en segons"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Envia una opció ifconfig al remot"
+
+msgid "Push options to peer"
+msgstr "Envia opcions al peer"
+
+msgid "Query management channel for private key"
+msgstr "Consulta el canal de gestió per una clau privada"
+
+msgid "Randomly choose remote server"
+msgstr "Tria aleatòriament el servidor remot"
+
msgid "Refuse connection if no custom client config"
msgstr "Refusa la connexió si no hi ha configuració de client personalitzada"
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "Directori temporal pel fitxer de retorn per la connexió de client"
+msgid "Remap SIGUSR1 signals"
+msgstr "Remapeja senyals SIGUSR1"
+
+msgid "Remote host name or ip address"
+msgstr "Nom de màquina remot o adreça IP"
+
+msgid "Remote ping timeout"
+msgstr "Temps d'espera màxim de ping remot"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Renegocia clau de canal de dades després de bytes"
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "Renegocia clau de canal de dades després de paquets"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Renegocia clau de canal de dades després de segons"
+
+msgid "Replay protection sliding window size"
+msgstr "Mida de la finestra lliscant de protecció de reproducció"
+
+msgid "Require explicit designation on certificate"
+msgstr "Requereix una designació explícita al certificat"
+
+msgid "Require explicit key usage on certificate"
+msgstr "Requereix ús de clau explícit al certificat"
+
+msgid "Restart after remote ping timeout"
+msgstr "Reinicia després d'excedir el temps d'espera de ping remot"
+
+msgid "Retransmit timeout on TLS control channel"
+msgstr "Temps d'espera de retransmissió en canal de control TLS"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Reintenta indefinidament en errors de proxy HTTP"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Reintenta indefinidament en errors de proxy Socks"
+
+msgid "Route subnet to client"
+msgstr "Enruta subxarxa al client"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Executa com un servidor inetd o xinetd"
+
+msgid "Run script cmd on client connection"
+msgstr "Executa l'script en connectar-se el client"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Executa l'script en desconnectar-te el client"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Executa els scripts d'activació/desactivació per tots els reinicis."
+
+msgid "Send notification to peer on disconnect"
+msgstr "Envia notificació al peer en desconnectar-se"
+
+msgid "Set GID to group"
+msgstr "Estableix el GID al grup"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Estableix la MTU de TCP/UDP"
+
+msgid "Set UID to user"
+msgstr "Estableix l'UID per l'usuari"
+
+msgid "Set aside a pool of subnets"
+msgstr "Deixa de banda un conjunt de subxarxes"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Estableix les opcions de proxy HTTP exteses"
+
+msgid "Set output verbosity"
+msgstr "Estableix el detall de sortida"
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
msgid "Set size of real and virtual address hash tables"
msgstr ""
"Estableix la mida de les taules de dispersió d'adreces reals i virtuals"
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Número de memòries intermitges de broadcast assignades"
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Estableix la mida de memòria intermèdia de recepció TCP/UDP"
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Número màxim de paquets TCP encuats a la sortida"
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Estableix la mida de memòria intermèdia d'enviament TCP/UDP"
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Script per validar les adreces virtuals de client"
+msgid "Set tun/tap TX queue length"
+msgstr "Estableix la mida de cua TX de tun/tap"
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Màxim de noves connexions permesès"
+msgid "Set tun/tap adapter parameters"
+msgstr ""
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Màxim de clients connectats pemès"
+msgid "Set tun/tap device MTU"
+msgstr "Estableix la MTU del dispositiu tun/tap"
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Màxim permès d'interns"
+msgid "Set tun/tap device overhead"
+msgstr "Estableix la càrrega (overhead) del dispositiu tun/tap"
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Sessions entrants HTTPS de proxy"
+msgid "Set upper bound on TCP MSS"
+msgstr "Estableix el límit superior al TCP MSS"
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Configura el mode client"
+msgid "Shaping for peer bandwidth"
+msgstr "Configuració d'ample de banda d'un peer"
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Autentica utilitzant nom d'usuari/contrasenya"
+msgid "Shell cmd to execute after tun device open"
+msgstr "Ordre a executar després que s'obri un dispositiu tun"
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Accepta opcions rebudes del servidor"
+msgid "Shell cmd to run after tun device close"
+msgstr "Ordre a executar després que es tanqui un dispositiu tun"
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Gestió de fallades d'autenticació"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Envia notificació al peer en desconnectar-se"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Activa el mode d'encriptació de Clau Estàtica (no-TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "Autenticació HMAC per paquets"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Xifra d'encriptació per paquets"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Mida de la clau de xifratge"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Activa motor criptogràfic OpenSSL de maquinari"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Desactiva la protecció de reproducció"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Silencia la sortida d'alertes de reproducció"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "Mida de la finestra lliscant de protecció de reproducció"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Desactiva xifratge de vector d'inicialització"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "Persisteix l'estat de protecció de reproducció"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Executa un test propi de característiques criptogràfiques"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Activa el TLS i assumeix el rol de servidor"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Activa el TLS i assumeix el rol de client"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Mètode d'intercanvi de clau de canal de dades"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr "Autoritat de certificat"
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Directori de certificats de confiança (CAs i CRLs)"
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Paràmetres Diffie-Hellman"
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Certificat local"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Clau privada local"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "Fitxer PKCS#12 contenidor de claus"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "Xifrador TLS"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "Temps d'espera de retransmissió en canal de control TLS"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Renegocia clau de canal de dades després de bytes"
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "Renegocia clau de canal de dades després de paquets"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Renegocia clau de canal de dades després de segons"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Calendari per intercanvi de claus"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Finestra de transició de clau"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Permet només una sessió"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Surt en fallar la negociació TLS"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Autenticació addicional sobre TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "Aconsegueix contrasenya PEM de controlar tty abans de dimonitzar"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "No desis a la memòria cau contrasenyes --askpass o --auth-user-pass"
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
-msgid "Check peer certificate against a CRL"
-msgstr "Comprova el certificat de peer contra un CRL"
-
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
msgid "Shell command to verify X509 name"
msgstr "Ordre de comanda per verificar el nom X509"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
-msgid "Only accept connections from given X509 name"
-msgstr "Accepta connexions només d'un cert nom X509"
+msgid "Silence the output of replay warnings"
+msgstr "Silencia la sortida d'alertes de reproducció"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
-msgid "Require explicit designation on certificate"
-msgstr "Requereix una designació explícita al certificat"
+msgid "Size of cipher key"
+msgstr "Mida de la clau de xifratge"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
-msgid "Require explicit key usage on certificate"
-msgstr "Requereix ús de clau explícit al certificat"
+msgid "Specify a default gateway for routes"
+msgstr "Especifica una passarel·la per defecte per rutes"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "Requereix ús de clau explícita extesa al certificat"
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Inicia l'OpenVPN en un estat d'hivernació"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
-msgstr "Requereix ús de clau normal i extesa al certificat"
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Iniciat"
+
+msgid "Status file format version"
+msgstr "Versió de format de fitxer d'estat"
+
+msgid "Switch to advanced configuration »"
+msgstr "Canvia a configuració avançada"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Port TCP/UDP tan per local com per remot"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Port TCP/UDP per local (defecte=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Port TCP/UDP per remot (defecte=1194)"
+
+msgid "TLS cipher"
+msgstr "Xifrador TLS"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "Pas TOS (aplica només a IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "Directori temporal pel fitxer de retorn per la connexió de client"
+
+msgid "Timeframe for key exchange"
+msgstr "Calendari per intercanvi de claus"
+
+msgid "Type of used device"
+msgstr "Tipus de dispositiu utilitzat"
+
+msgid "Use fast LZO compression"
+msgstr "Utilitza compressió ràpida LZO"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Utilitza adreces individuals en comptes de subxarxes /30"
+
+msgid "Use protocol"
+msgstr "Utilitza protocol"
+
+msgid "Use tun/tap device node"
+msgstr "Utilitza un node de dispositiu tun/tap"
+
+msgid "Use username as common name"
+msgstr "Utilitza el nom d'usuari com a nom comú"
+
+msgid "Write log to file"
+msgstr "Escriu registre al fitxer"
+
+msgid "Write process ID to file"
+msgstr "Escriu l'ID del procés al fitxer"
+
+msgid "Write status to file every n seconds"
+msgstr "Escriu l'estat al fitxer cada n segons"
+
+msgid "no"
+msgstr "no"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "dispositiu tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr "temps d'espera màxim d'inactivitat tun/tap"
+
+msgid "yes (%i)"
+msgstr "sí (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "Canvia a configuració bàsica"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Configuració del dimoni"
+
+#~ msgid "Networking options"
+#~ msgstr "Opcions de xarxa"
+
+#~ msgid "VPN options"
+#~ msgstr "Opcions VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Configuració criptogràfica"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Llegeix les opcions de configuració d'un fitxer"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Temps d'espera de connexió"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Número màxim d'intents de reconnexió"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Intenta aconseguir la configuració de proxy automàticament"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Connecta't a una màquina remota"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Vincula a adreça i port locals"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Estableix l'adreça de capa d'enllaç del dispositiu tap"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Configura el dispositiu per fer servir l'adreça IP"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Especifica una mètrica per defecte per rutes"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Endarrereix n segons després de la connexió"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "No agafis les opcions del servidor"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Estableix temps d'espera màxims en mode servidor"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Configura un servidor UDP multi-homed"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Mode de proves d'estrés especial"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "La interfície de gestió es connectarà com un client TCP"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Publica SIGUSR1 en desconnexions de gestió"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Oblida contrasenyes en desconnexions de gestió"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Carrega el mòdul de connectors"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Script per verificar l'autenticació interactiva"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Script per validar les adreces virtuals de client"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Sessions entrants HTTPS de proxy"
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Executa un test propi de característiques criptogràfiques"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Mètode d'intercanvi de clau de canal de dades"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Directori de certificats de confiança (CAs i CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "Requereix ús de clau explícita extesa al certificat"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr "Requereix ús de clau normal i extesa al certificat"
diff --git a/po/de/openvpn.po b/po/de/openvpn.po
index d566e00dfc..1f2fd1b236 100644
--- a/po/de/openvpn.po
+++ b/po/de/openvpn.po
@@ -6,1064 +6,739 @@ msgstr ""
"PO-Revision-Date: 2009-05-27 00:26+0200\n"
"Last-Translator: Jo-Philipp Wich \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« Zur vereinfachten Konfiguration wechseln"
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Erweiterte Einstellungen"
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Einschalten"
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Gestartet"
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "Nicht gestartet"
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "Gestartet (%s)"
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Netzwerkport"
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protokoll"
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instanz \"%s\""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN Instanzen"
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr "Liste der konfigurierten OpenVPN Instanzen und ihr momentaner Status"
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Konfiguration des Dämons"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Netzwerk Optionen"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "VPN Optionen"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Verschlüsselungseinstellungen"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Konfiguration aus einer Datei lesen"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Lokaler Rechnername oder IP Adresse"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Entfernter Rechnername oder IP-Adresse"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Entfernten Server zufällig wählen"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Betriebsmodus"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Netzwerkprotokoll"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Wiederholrate für Verbindungversuche"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Maximale Dauer für Verbindungsversuche"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Maximale Anzahl von Verbindungsversuchen"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Versuchen, die Proxyeinstellung automatisch zu beziehen"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Verbindung über einen HTTP-Proxy"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Neue Verbindung bei Proxy-Fehlern aufbauen"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-#, fuzzy
-msgid "Proxy timeout in seconds"
-msgstr "Maximaler Timeout für Proxy-Verbindungen"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Erweiterte HTTP-Proxy Einstellungen vornehmen"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Verbindung über einen Socks 5 - Proxy"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Neue Verbindung bei Proxy-Fehlern aufbauen"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Neuer Verbindungsversuch wenn Namensauflösung fehlschlägt"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-#, fuzzy
-msgid "Allow remote to change its IP or port"
-msgstr "Address- und Port-Änderungen der Gegenstelle zulassen"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Programm bei Adressänderung der Gegenstelle aufrufen"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Benutzter TCP oder UDP Port"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Lokaler TCP oder UDP Port"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "TCP oder UDP Port der Gegenstelle"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "An lokale Adresse und Port binden"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-#, fuzzy
-msgid "Do not bind to local address and port"
-msgstr "An keine spezielle Adresse binden"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "TUN/TAP Schnittstelle"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Schnittstellentyp"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "TUN/TAP Gerätedatei"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-#, fuzzy
-msgid "Set the link layer address of the tap device"
-msgstr "Lokale Link-Adresse der TAP Schnittstelle"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
#, fuzzy
msgid "'net30', 'p2p', or 'subnet'"
msgstr "Topologietyp"
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
#, fuzzy
-msgid "Make tun device IPv6 capable"
-msgstr "IPv6 auf TUN Schnittstellen aktivieren"
+msgid "Accept options pushed from server"
+msgstr "Vom Server übertragene Optionen lokal akzeptieren"
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-#, fuzzy
-msgid "Configure device to use IP address"
-msgstr "IP-Adresskonfiguration für Schnittstelle"
+msgid "Add"
+msgstr ""
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-#, fuzzy
-msgid "Don't actually execute ifconfig"
-msgstr "Schnittstellenkonfiguration nicht durchführen"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-#, fuzzy
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Keine Warnung bei inkonsistenter Schnittstellenkonfiguration"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
#, fuzzy
msgid "Add route after establishing connection"
msgstr "Netzwerkrouten nach Verbindungsaufbau einrichten"
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Standard-Gateway für Netzwerkrouten"
+msgid "Additional authentication over TLS"
+msgstr "Erweiterte Authentifikation über TLS"
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Standard-Metrik für Netzwerkrouten"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
#, fuzzy
-msgid "Delay n seconds after connection "
-msgstr "Verzögere Routen-Einrichtung nach Verbindungsaufbau"
+msgid "Allow client-to-client traffic"
+msgstr "Netzwerkverkehr zwischen Teilnehmern zulassen"
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
#, fuzzy
-msgid "Execute shell cmd after routes are added"
-msgstr "Shell-Befehl nach Routen-Einrichtung ausführen"
+msgid "Allow multiple clients with same certificate"
+msgstr "Mehrere Teilnehmer mit selbem Zertifikat erlauben"
+
+msgid "Allow only one session"
+msgstr "Nur eine einzige Verbindung zulassen"
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
#, fuzzy
-msgid "Don't add routes automatically"
-msgstr "Netzwerkrouten nicht automatisch einrichten"
+msgid "Allow remote to change its IP or port"
+msgstr "Address- und Port-Änderungen der Gegenstelle zulassen"
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Keine Konfigurationsoptionen vom Server beziehen"
+#, fuzzy
+msgid "Allowed maximum of connected clients"
+msgstr "Betriebsmodus"
+
+msgid "Allowed maximum of internal"
+msgstr "Maximal erlaubte Anzahl an Netzwerkrouten pro Teilnehmer"
+
+#, fuzzy
+msgid "Allowed maximum of new connections"
+msgstr "Wiederholrate für Verbindungversuche"
+
+msgid "Append log to file"
+msgstr "An Protokolldatei anfügen"
+
+msgid "Authenticate using username/password"
+msgstr "Authentifikation mittels Benutzername und Passwort"
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
msgid "Automatically redirect default route"
msgstr "Automatisch die Standard-Route umleiten"
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr "Liste der konfigurierten OpenVPN Instanzen und ihr momentaner Status"
+
#, fuzzy
-msgid "Pass environment variables to script"
-msgstr "Umgebungsvariablen für Shell-Befehle"
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+"Shell-Kommando vor Deaktivierung der TUN/TAP Schnittstelle ausführen"
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
#, fuzzy
-msgid "Shaping for peer bandwidth"
-msgstr "Verbindungsrate von Gegenstellen limitieren"
+msgid "Certificate authority"
+msgstr "Zertifikat der Zertifizierungsstelle"
+
+msgid "Change process priority"
+msgstr "Prozess-Priorität anpassen"
+
+msgid "Change to directory before initialization"
+msgstr "Vor der Initialisierung in Verzeichnis wechseln"
+
+msgid "Check peer certificate against a CRL"
+msgstr "Teilnehmerzertifikat mit Sperrliste abgleichen"
+
+msgid "Chroot to directory after initialization"
+msgstr "Nach der Initialisierung in Verzeichnis wechseln"
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
#, fuzzy
-msgid "Set timeouts in server mode"
-msgstr "Allgemeine Timeouts im Server-Modus"
+msgid "Client is disabled"
+msgstr "Teilnehmer-Konto deaktivieren"
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "Inaktivitäts-Timeout für TUN/TAP Schnittstellen"
+msgid "Configuration category"
+msgstr ""
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Ping-Timeout für Gegenstellen"
+msgid "Configure client mode"
+msgstr "Clientmodus"
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
#, fuzzy
-msgid "Restart after remote ping timeout"
-msgstr "Neu Starten nach Ping-Timeout an Gegenstellen"
+msgid "Configure server bridge"
+msgstr "Server-zu-Server Netzwerkbrücke"
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Ping-Timeouts nur bei vorhandenen Routen auslösen"
+msgid "Configure server mode"
+msgstr "Server-Modus"
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-#, fuzzy
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Ping-Intervall für Gegenstellen"
+msgid "Connect through Socks5 proxy"
+msgstr "Verbindung über einen Socks 5 - Proxy"
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-#, fuzzy
-msgid "Configure a multi-homed UDP server"
-msgstr "UDP-Server mit mehreren Schnittstellen"
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-#, fuzzy
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "TUN-, TAP- und UDP-Schreibvorgänge optimieren"
+msgid "Connection retry interval"
+msgstr "Wiederholrate für Verbindungversuche"
-# Umleiten? Ignorieren? Behandeln?
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-#, fuzzy
-msgid "Remap SIGUSR1 signals"
-msgstr "\"USR1\" Systemsignal umleiten"
+msgid "Daemonize after initialization"
+msgstr "Nach der Initialisierung als Hintergrundprozess ausführen"
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "TUN/TAP Schnittelle bei Neustarts offen halten"
+msgid "Delay n seconds after connection"
+msgstr ""
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "IP-Adresse der Gegenstelle bei Neustarts beibehalten"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Lokale IP-Adresse bei Neustarts beibehalten"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Schlüssel bei Neustarts beibehalten"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-#, fuzzy
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "\"TOS\" Durchleitung (nur für IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "MTU für TUN/TAP Schnittstelle festlegen"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Overhead für TUN/TAP Schnittstelle festlegen"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "MTU für TCP/UDP Protokoll festlegen"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-#, fuzzy
-msgid "Enable Path MTU discovery"
-msgstr "MTU-Erkennung aktivieren"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-#, fuzzy
-msgid "Empirically measure MTU"
-msgstr "MTU regelmäßig testen"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Datenpakete bei Bedarf fragmentieren"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-#, fuzzy
-msgid "Set upper bound on TCP MSS"
-msgstr "Maximale TCP-MSS erzwingen"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-#, fuzzy
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Größe des TCP/UDP Sende-Puffers"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-#, fuzzy
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Größe des TCP/UDP Empfangs-Puffers"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Größe der Sende-Warteschlange"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-#, fuzzy
-msgid "Disable Paging"
-msgstr "Benutzen Arbeitsspeicher sperren"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-#, fuzzy
-msgid "Shell cmd to execute after tun device open"
-msgstr "Shell-Kommando nach Einrichtung von TUN/TAP Schnittstelle ausführen"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
#, fuzzy
msgid "Delay tun/tap open and up script execution"
msgstr "Shell-Kommando nach Schnittstelleneinrichtung verzögern"
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
+#, fuzzy
+msgid "Diffie Hellman parameters"
+msgstr "Diffie-Hellman-Parameter"
+
+msgid "Directory for custom client config files"
+msgstr "Verzeichnis für eigene Konfigurationsdateien"
+
+#, fuzzy
+msgid "Disable Paging"
+msgstr "Benutzen Arbeitsspeicher sperren"
+
+#, fuzzy
+msgid "Disable cipher initialisation vector"
+msgstr "Initialisierungsvektor für Verschlüsselung deaktivieren"
+
+#, fuzzy
+msgid "Disable options consistency check"
+msgstr "Konsistenzprüfungen für Optionen durchführen"
+
+#, fuzzy
+msgid "Disable replay protection"
+msgstr "\"Replay\"-Schutz deaktivieren"
+
+#, fuzzy
+msgid "Do not bind to local address and port"
+msgstr "An keine spezielle Adresse binden"
+
+#, fuzzy
+msgid "Don't actually execute ifconfig"
+msgstr "Schnittstellenkonfiguration nicht durchführen"
+
+#, fuzzy
+msgid "Don't add routes automatically"
+msgstr "Netzwerkrouten nicht automatisch einrichten"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Authentifikationsdaten nicht zwischenspeichern"
+
+#, fuzzy
+msgid "Don't inherit global push options"
+msgstr "Nur teilnehmerspezifische Optionen übertragen"
+
+msgid "Don't log timestamps"
+msgstr "Keine Zeitangaben protokollieren"
+
+msgid "Don't re-read key on restart"
+msgstr "Schlüssel bei Neustarts beibehalten"
+
+#, fuzzy
+msgid "Don't require client certificate"
+msgstr "Verbindung ohne Teilnehmerzertifikat erlauben"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Adaptive LZO-Kompression deaktivieren"
+
+#, fuzzy
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Keine Warnung bei inkonsistenter Schnittstellenkonfiguration"
+
+# Was für Parameter?
+#, fuzzy
+msgid "Echo parameters to log"
+msgstr "Parameter in Protokolldatei speichern"
+
+#, fuzzy
+msgid "Empirically measure MTU"
+msgstr "MTU regelmäßig testen"
+
+#, fuzzy
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "OpenSSL-Unterstützung für Kryptographie-Hardware benutzen"
+
+#, fuzzy
+msgid "Enable Path MTU discovery"
+msgstr "MTU-Erkennung aktivieren"
+
+#, fuzzy
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Verschlüsselung mittels statischer Schlüssel (kein TLS)"
+
+#, fuzzy
+msgid "Enable TLS and assume client role"
+msgstr "TLS im Client-Betriebsmodus aktivieren"
+
+#, fuzzy
+msgid "Enable TLS and assume server role"
+msgstr "TLS im Server-Betriebsmodus aktivieren"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Datenpakete bei Bedarf fragmentieren"
+
+#, fuzzy
+msgid "Enable management interface on IP port"
+msgstr "Administratorschnittstelle aktivieren"
+
+msgid "Enabled"
+msgstr "Einschalten"
+
+#, fuzzy
+msgid "Encryption cipher for packets"
+msgstr "Verschlüsselungsalgorithmus für Pakete"
+
+#, fuzzy
+msgid "Execute shell cmd after routes are added"
+msgstr "Shell-Befehl nach Routen-Einrichtung ausführen"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Programm bei Adressänderung der Gegenstelle aufrufen"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+# Was exited da?
+#, fuzzy
+msgid "Exit on TLS negotiation failure"
+msgstr "Terminieren nach fehlgeschlagenem Schlüsselaustausch"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "PEM-Passwort von Konsole abfragen"
+
+#, fuzzy
+msgid "HMAC authentication for packets"
+msgstr "HMAC-Authentifizierung für Pakete"
+
+#, fuzzy
+msgid "Handling of authentication failures"
+msgstr "Behandlung von Authentifikationsfehlern"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Neuer Verbindungsversuch wenn Namensauflösung fehlschlägt"
+
+msgid "Instance \"%s\""
+msgstr "Instanz \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Lokale IP-Adresse bei Neustarts beibehalten"
+
+msgid "Keep remote IP address on restart"
+msgstr "IP-Adresse der Gegenstelle bei Neustarts beibehalten"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "TUN/TAP Schnittelle bei Neustarts offen halten"
+
+msgid "Key transition window"
+msgstr "Maximaler Zeitraum für Schlüsselwechsel"
+
+msgid "Limit repeated log messages"
+msgstr "Wiederholende Protokollmeldungen unterdrücken"
+
+#, fuzzy
+msgid "Local certificate"
+msgstr "Lokales Zertifikat"
+
+msgid "Local host name or ip address"
+msgstr "Lokaler Rechnername oder IP Adresse"
+
+#, fuzzy
+msgid "Local private key"
+msgstr "Lokaler privater Schlüssel"
+
+msgid "Major mode"
+msgstr "Betriebsmodus"
+
+#, fuzzy
+msgid "Make tun device IPv6 capable"
+msgstr "IPv6 auf TUN Schnittstellen aktivieren"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Maximale Anzahl an TCP-Paketen in der Warteschlange"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Anzahl der benutzten Broadcast-Puffer"
+
+#, fuzzy
+msgid "Number of lines for log file history"
+msgstr "Anzahl der Zeilen im Protokoll-Zwischenspeicher"
+
+#, fuzzy
+msgid "Only accept connections from given X509 name"
+msgstr "Nur Verbindungen vom angegebenem X.509 Name zulassen"
+
+msgid "Only process ping timeouts if routes exist"
+msgstr "Ping-Timeouts nur bei vorhandenen Routen auslösen"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "OpenVPN Instanzen"
+
+#, fuzzy
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "TUN-, TAP- und UDP-Schreibvorgänge optimieren"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Ausgaben ins Systemprotokoll umleiten und im Vordergrund ausführen"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "PKCS#12 Schlüsselarchiv"
+
+#, fuzzy
+msgid "Pass environment variables to script"
+msgstr "Umgebungsvariablen für Shell-Befehle"
+
+#, fuzzy
+msgid "Persist replay-protection state"
+msgstr "Persistenter Status für \"Replay\"-Schutz"
+
+#, fuzzy
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Persistenten IP-Adressbereich nutzen"
+
+#, fuzzy
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Ping-Intervall für Gegenstellen"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Netzwerkport"
+
+msgid "Protocol"
+msgstr "Protokoll"
+
+#, fuzzy
+msgid "Proxy timeout in seconds"
+msgstr "Maximaler Timeout für Proxy-Verbindungen"
+
+#, fuzzy
+msgid "Push an ifconfig option to remote"
+msgstr "IP-Adresskonfiguration an Teilnehmer übertragen"
+
+#, fuzzy
+msgid "Push options to peer"
+msgstr "Optionen an Teilnehmer übertragen"
+
+#, fuzzy
+msgid "Query management channel for private key"
+msgstr "Privaten Schlüssel über Management-Kanal abfragen"
+
+msgid "Randomly choose remote server"
+msgstr "Entfernten Server zufällig wählen"
+
+#, fuzzy
+msgid "Refuse connection if no custom client config"
+msgstr "Teilnehmer-Verbindung verweigern wenn Teilnehmer-Konfiguration fehlt"
+
+# Umleiten? Ignorieren? Behandeln?
+#, fuzzy
+msgid "Remap SIGUSR1 signals"
+msgstr "\"USR1\" Systemsignal umleiten"
+
+msgid "Remote host name or ip address"
+msgstr "Entfernter Rechnername oder IP-Adresse"
+
+msgid "Remote ping timeout"
+msgstr "Ping-Timeout für Gegenstellen"
+
+#, fuzzy
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Schlüssel nach maximale Verkehrsmenge neu aushandeln"
+
+#, fuzzy
+msgid "Renegotiate data chan. key after packets"
+msgstr "Schlüssel nach maximaler Anzahl von Paketen neu aushandeln"
+
+#, fuzzy
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Schlüssel nach maximaler Verbindungsdauer neu aushandeln"
+
+#, fuzzy
+msgid "Replay protection sliding window size"
+msgstr "Fenstergröße für \"Replay\"-Schutz"
+
+msgid "Require explicit designation on certificate"
+msgstr "Verwendungszweck von Zertifikaten überprüfen"
+
+msgid "Require explicit key usage on certificate"
+msgstr "Zertifikat explizit auf einfachen Verwendungszweck prüfen"
+
+#, fuzzy
+msgid "Restart after remote ping timeout"
+msgstr "Neu Starten nach Ping-Timeout an Gegenstellen"
+
+msgid "Retransmit timeout on TLS control channel"
+msgstr "TLS Timeout"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Neue Verbindung bei Proxy-Fehlern aufbauen"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Neue Verbindung bei Proxy-Fehlern aufbauen"
+
+#, fuzzy
+msgid "Route subnet to client"
+msgstr "Subnetz an Teilnehmer routen"
+
+#, fuzzy
+msgid "Run as an inetd or xinetd server"
+msgstr "Als inetd oder xinetd Server laufen"
+
+#, fuzzy
+msgid "Run script cmd on client connection"
+msgstr "Shell-Kommando bei neuer Teilnehmer-Verbindung ausführen"
+
+#, fuzzy
+msgid "Run script cmd on client disconnection"
+msgstr "Shell-Kommando beim Trennen von Teilnehmer-Verbindungen ausführen"
+
+#, fuzzy
+msgid "Run up/down scripts for all restarts"
+msgstr "Shell-Kommandos bei jedem Neustart ausführen"
+
+msgid "Send notification to peer on disconnect"
+msgstr "Teilnehmer über Verbindungstrennung informieren"
+
+msgid "Set GID to group"
+msgstr "Dienst mit Benutzergruppe laufen lassen"
+
+msgid "Set TCP/UDP MTU"
+msgstr "MTU für TCP/UDP Protokoll festlegen"
+
+msgid "Set UID to user"
+msgstr "Dienst als Benutzer laufen lassen"
+
+msgid "Set aside a pool of subnets"
+msgstr "IP-Adressbereich für zu vergebende Subnetze"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Erweiterte HTTP-Proxy Einstellungen vornehmen"
+
+# Detailstufe passt nicht ganz
+#, fuzzy
+msgid "Set output verbosity"
+msgstr "Detailstufe für Protokolle"
+
+#, fuzzy
+msgid "Set size of real and virtual address hash tables"
+msgstr "Größe für interne Adresstabellen"
+
+#, fuzzy
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Größe des TCP/UDP Empfangs-Puffers"
+
+#, fuzzy
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Größe des TCP/UDP Sende-Puffers"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Größe der Sende-Warteschlange"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "MTU für TUN/TAP Schnittstelle festlegen"
+
+msgid "Set tun/tap device overhead"
+msgstr "Overhead für TUN/TAP Schnittstelle festlegen"
+
+#, fuzzy
+msgid "Set upper bound on TCP MSS"
+msgstr "Maximale TCP-MSS erzwingen"
+
+#, fuzzy
+msgid "Shaping for peer bandwidth"
+msgstr "Verbindungsrate von Gegenstellen limitieren"
+
+#, fuzzy
+msgid "Shell cmd to execute after tun device open"
+msgstr "Shell-Kommando nach Einrichtung von TUN/TAP Schnittstelle ausführen"
+
#, fuzzy
msgid "Shell cmd to run after tun device close"
msgstr ""
"Shell-Kommando nach Deaktivierung der TUN/TAP Schnittstelle "
"ausführen"
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-#, fuzzy
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-"Shell-Kommando vor Deaktivierung der TUN/TAP Schnittstelle ausführen"
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-#, fuzzy
-msgid "Run up/down scripts for all restarts"
-msgstr "Shell-Kommandos bei jedem Neustart ausführen"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Dienst als Benutzer laufen lassen"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Dienst mit Benutzergruppe laufen lassen"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Nach der Initialisierung in Verzeichnis wechseln"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Vor der Initialisierung in Verzeichnis wechseln"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Nach der Initialisierung als Hintergrundprozess ausführen"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Ausgaben ins Systemprotokoll umleiten und im Vordergrund ausführen"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-#, fuzzy
-msgid "Run as an inetd or xinetd server"
-msgstr "Als inetd oder xinetd Server laufen"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "In Protokolldatei schreiben"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "An Protokolldatei anfügen"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Keine Zeitangaben protokollieren"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Prozess-Nummer in Datei schreiben"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Prozess-Priorität anpassen"
-
-# Was für Parameter?
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-#, fuzzy
-msgid "Echo parameters to log"
-msgstr "Parameter in Protokolldatei speichern"
-
-# Detailstufe passt nicht ganz
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-#, fuzzy
-msgid "Set output verbosity"
-msgstr "Detailstufe für Protokolle"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Wiederholende Protokollmeldungen unterdrücken"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-#, fuzzy
-msgid "Write status to file every n seconds"
-msgstr "Status-Datei schreiben"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-#, fuzzy
-msgid "Status file format version"
-msgstr "Format für Status-Datei"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-#, fuzzy
-msgid "Disable options consistency check"
-msgstr "Konsistenzprüfungen für Optionen durchführen"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-#, fuzzy
-msgid "Special stress testing mode"
-msgstr "Stresstest-Modus"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-#, fuzzy
-msgid "Use fast LZO compression"
-msgstr "Schnelle LZO-Kompression benutzen"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Adaptive LZO-Kompression deaktivieren"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-#, fuzzy
-msgid "Enable management interface on IP port"
-msgstr "Administratorschnittstelle aktivieren"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-#, fuzzy
-msgid "Management interface will connect as a TCP client"
-msgstr "Administratorschnittstelle als TCP-Client verbinden"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-#, fuzzy
-msgid "Query management channel for private key"
-msgstr "Privaten Schlüssel über Management-Kanal abfragen"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-#, fuzzy
-msgid "Start OpenVPN in a hibernating state"
-msgstr "OpenVPN im Schlafmodus starten"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-#, fuzzy
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "\"SIGUSR1\" Signal beim Trennen vom Management-Interface auslösen"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-#, fuzzy
-msgid "Forget passwords on management disconnect"
-msgstr ""
-"Zwischengespeicherte Passwörter beim Trennen vom Management-Interface "
-"verwerfen"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-#, fuzzy
-msgid "Number of lines for log file history"
-msgstr "Anzahl der Zeilen im Protokoll-Zwischenspeicher"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-#, fuzzy
-msgid "Load plug-in module"
-msgstr "Plugin-Modul laden"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Server-Modus"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-#, fuzzy
-msgid "Configure server bridge"
-msgstr "Server-zu-Server Netzwerkbrücke"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-#, fuzzy
-msgid "Push options to peer"
-msgstr "Optionen an Teilnehmer übertragen"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-#, fuzzy
-msgid "Don't inherit global push options"
-msgstr "Nur teilnehmerspezifische Optionen übertragen"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "IP-Adressbereich für zu vergebende Subnetze"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-#, fuzzy
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Einzeladressen statt /30 Subnetze vergeben"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-#, fuzzy
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Persistenten IP-Adressbereich nutzen"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-#, fuzzy
-msgid "Push an ifconfig option to remote"
-msgstr "IP-Adresskonfiguration an Teilnehmer übertragen"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-#, fuzzy
-msgid "Route subnet to client"
-msgstr "Subnetz an Teilnehmer routen"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-#, fuzzy
-msgid "Client is disabled"
-msgstr "Teilnehmer-Konto deaktivieren"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-#, fuzzy
-msgid "Don't require client certificate"
-msgstr "Verbindung ohne Teilnehmerzertifikat erlauben"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-#, fuzzy
-msgid "Use username as common name"
-msgstr "Benutzernamen als Common-Name benutzen"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-#, fuzzy
-msgid "Script to verify interactive authentication"
-msgstr "Shell-Kommando zum Überprüfen der interaktiven Authentifikation"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-#, fuzzy
-msgid "Allow client-to-client traffic"
-msgstr "Netzwerkverkehr zwischen Teilnehmern zulassen"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-#, fuzzy
-msgid "Allow multiple clients with same certificate"
-msgstr "Mehrere Teilnehmer mit selbem Zertifikat erlauben"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-#, fuzzy
-msgid "Run script cmd on client connection"
-msgstr "Shell-Kommando bei neuer Teilnehmer-Verbindung ausführen"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-#, fuzzy
-msgid "Run script cmd on client disconnection"
-msgstr "Shell-Kommando beim Trennen von Teilnehmer-Verbindungen ausführen"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Verzeichnis für eigene Konfigurationsdateien"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-#, fuzzy
-msgid "Refuse connection if no custom client config"
-msgstr "Teilnehmer-Verbindung verweigern wenn Teilnehmer-Konfiguration fehlt"
-
-# Was soll das eigtl. bedeuten?
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-#, fuzzy
-msgid "Temporary directory for client-connect return file"
-msgstr "Temporäres Verzeichnis für Teilnehmer-Verbindungen"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-#, fuzzy
-msgid "Set size of real and virtual address hash tables"
-msgstr "Größe für interne Adresstabellen"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Anzahl der benutzten Broadcast-Puffer"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Maximale Anzahl an TCP-Paketen in der Warteschlange"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Shell-Kommando zum Erlernen neuer Teilnehmer-Adressen"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-#, fuzzy
-msgid "Allowed maximum of new connections"
-msgstr "Wiederholrate für Verbindungversuche"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-#, fuzzy
-msgid "Allowed maximum of connected clients"
-msgstr "Betriebsmodus"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Maximal erlaubte Anzahl an Netzwerkrouten pro Teilnehmer"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-#, fuzzy
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Netzwerk-Port mit HTTPS-Server teilen"
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Clientmodus"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Authentifikation mittels Benutzername und Passwort"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-#, fuzzy
-msgid "Accept options pushed from server"
-msgstr "Vom Server übertragene Optionen lokal akzeptieren"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-#, fuzzy
-msgid "Handling of authentication failures"
-msgstr "Behandlung von Authentifikationsfehlern"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Teilnehmer über Verbindungstrennung informieren"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-#, fuzzy
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Verschlüsselung mittels statischer Schlüssel (kein TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-#, fuzzy
-msgid "HMAC authentication for packets"
-msgstr "HMAC-Authentifizierung für Pakete"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-#, fuzzy
-msgid "Encryption cipher for packets"
-msgstr "Verschlüsselungsalgorithmus für Pakete"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-#, fuzzy
-msgid "Size of cipher key"
-msgstr "Größe des Schlüssels"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-#, fuzzy
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "OpenSSL-Unterstützung für Kryptographie-Hardware benutzen"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-#, fuzzy
-msgid "Disable replay protection"
-msgstr "\"Replay\"-Schutz deaktivieren"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-#, fuzzy
-msgid "Silence the output of replay warnings"
-msgstr "\"Replay\"-Warnungen unterdrücken"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-#, fuzzy
-msgid "Replay protection sliding window size"
-msgstr "Fenstergröße für \"Replay\"-Schutz"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-#, fuzzy
-msgid "Disable cipher initialisation vector"
-msgstr "Initialisierungsvektor für Verschlüsselung deaktivieren"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-#, fuzzy
-msgid "Persist replay-protection state"
-msgstr "Persistenter Status für \"Replay\"-Schutz"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Kryptographie-Selbsttest durchführen"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-#, fuzzy
-msgid "Enable TLS and assume server role"
-msgstr "TLS im Server-Betriebsmodus aktivieren"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-#, fuzzy
-msgid "Enable TLS and assume client role"
-msgstr "TLS im Client-Betriebsmodus aktivieren"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Schlüsselaustauschprotokoll für den Datenkanal"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-#, fuzzy
-msgid "Certificate authority"
-msgstr "Zertifikat der Zertifizierungsstelle"
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-#, fuzzy
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-"Verzeichnis mit vertrauenswürdigen Zertifizierungsstellen (Schlüssel und "
-"Sperrlisten)"
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-#, fuzzy
-msgid "Diffie Hellman parameters"
-msgstr "Diffie-Hellman-Parameter"
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-#, fuzzy
-msgid "Local certificate"
-msgstr "Lokales Zertifikat"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-#, fuzzy
-msgid "Local private key"
-msgstr "Lokaler privater Schlüssel"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "PKCS#12 Schlüsselarchiv"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "TLS Verschlüsselungsalgorithmus"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "TLS Timeout"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-#, fuzzy
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Schlüssel nach maximale Verkehrsmenge neu aushandeln"
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-#, fuzzy
-msgid "Renegotiate data chan. key after packets"
-msgstr "Schlüssel nach maximaler Anzahl von Paketen neu aushandeln"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-#, fuzzy
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Schlüssel nach maximaler Verbindungsdauer neu aushandeln"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Maximaler Zeitraum für Schlüsselaustausch"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Maximaler Zeitraum für Schlüsselwechsel"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Nur eine einzige Verbindung zulassen"
-
-# Was exited da?
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-#, fuzzy
-msgid "Exit on TLS negotiation failure"
-msgstr "Terminieren nach fehlgeschlagenem Schlüsselaustausch"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Erweiterte Authentifikation über TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "PEM-Passwort von Konsole abfragen"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Authentifikationsdaten nicht zwischenspeichern"
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
-msgid "Check peer certificate against a CRL"
-msgstr "Teilnehmerzertifikat mit Sperrliste abgleichen"
-
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
#, fuzzy
msgid "Shell command to verify X509 name"
msgstr "Shell-Kommando zum Überprüfen das X.509 Namens"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
#, fuzzy
-msgid "Only accept connections from given X509 name"
-msgstr "Nur Verbindungen vom angegebenem X.509 Name zulassen"
+msgid "Silence the output of replay warnings"
+msgstr "\"Replay\"-Warnungen unterdrücken"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
-msgid "Require explicit designation on certificate"
-msgstr "Verwendungszweck von Zertifikaten überprüfen"
+#, fuzzy
+msgid "Size of cipher key"
+msgstr "Größe des Schlüssels"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
-msgid "Require explicit key usage on certificate"
-msgstr "Zertifikat explizit auf einfachen Verwendungszweck prüfen"
+msgid "Specify a default gateway for routes"
+msgstr "Standard-Gateway für Netzwerkrouten"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "Zertifikat explizit auf erweiterten Verwendungszweck prüfen"
+#, fuzzy
+msgid "Start OpenVPN in a hibernating state"
+msgstr "OpenVPN im Schlafmodus starten"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
-msgstr "Explizit auf normalen und erweiterten Verwendungszweck prüfen"
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Gestartet"
+
+#, fuzzy
+msgid "Status file format version"
+msgstr "Format für Status-Datei"
+
+msgid "Switch to advanced configuration »"
+msgstr "Erweiterte Einstellungen"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Benutzter TCP oder UDP Port"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Lokaler TCP oder UDP Port"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "TCP oder UDP Port der Gegenstelle"
+
+msgid "TLS cipher"
+msgstr "TLS Verschlüsselungsalgorithmus"
+
+#, fuzzy
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "\"TOS\" Durchleitung (nur für IPv4)"
+
+# Was soll das eigtl. bedeuten?
+#, fuzzy
+msgid "Temporary directory for client-connect return file"
+msgstr "Temporäres Verzeichnis für Teilnehmer-Verbindungen"
+
+msgid "Timeframe for key exchange"
+msgstr "Maximaler Zeitraum für Schlüsselaustausch"
+
+msgid "Type of used device"
+msgstr "Schnittstellentyp"
+
+#, fuzzy
+msgid "Use fast LZO compression"
+msgstr "Schnelle LZO-Kompression benutzen"
+
+#, fuzzy
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Einzeladressen statt /30 Subnetze vergeben"
+
+msgid "Use protocol"
+msgstr "Netzwerkprotokoll"
+
+msgid "Use tun/tap device node"
+msgstr "TUN/TAP Gerätedatei"
+
+#, fuzzy
+msgid "Use username as common name"
+msgstr "Benutzernamen als Common-Name benutzen"
+
+msgid "Write log to file"
+msgstr "In Protokolldatei schreiben"
+
+msgid "Write process ID to file"
+msgstr "Prozess-Nummer in Datei schreiben"
+
+#, fuzzy
+msgid "Write status to file every n seconds"
+msgstr "Status-Datei schreiben"
+
+msgid "no"
+msgstr "Nicht gestartet"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "TUN/TAP Schnittstelle"
+
+msgid "tun/tap inactivity timeout"
+msgstr "Inaktivitäts-Timeout für TUN/TAP Schnittstellen"
+
+msgid "yes (%i)"
+msgstr "Gestartet (%s)"
+
+msgid "« Switch to basic configuration"
+msgstr "« Zur vereinfachten Konfiguration wechseln"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Konfiguration des Dämons"
+
+#~ msgid "Networking options"
+#~ msgstr "Netzwerk Optionen"
+
+#~ msgid "VPN options"
+#~ msgstr "VPN Optionen"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Verschlüsselungseinstellungen"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Konfiguration aus einer Datei lesen"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Maximale Dauer für Verbindungsversuche"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Maximale Anzahl von Verbindungsversuchen"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Versuchen, die Proxyeinstellung automatisch zu beziehen"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Verbindung über einen HTTP-Proxy"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "An lokale Adresse und Port binden"
+
+#, fuzzy
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Lokale Link-Adresse der TAP Schnittstelle"
+
+#, fuzzy
+#~ msgid "Configure device to use IP address"
+#~ msgstr "IP-Adresskonfiguration für Schnittstelle"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Standard-Metrik für Netzwerkrouten"
+
+#, fuzzy
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Verzögere Routen-Einrichtung nach Verbindungsaufbau"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Keine Konfigurationsoptionen vom Server beziehen"
+
+#, fuzzy
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Allgemeine Timeouts im Server-Modus"
+
+#, fuzzy
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "UDP-Server mit mehreren Schnittstellen"
+
+#, fuzzy
+#~ msgid "Special stress testing mode"
+#~ msgstr "Stresstest-Modus"
+
+#, fuzzy
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "Administratorschnittstelle als TCP-Client verbinden"
+
+#, fuzzy
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "\"SIGUSR1\" Signal beim Trennen vom Management-Interface auslösen"
+
+#, fuzzy
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr ""
+#~ "Zwischengespeicherte Passwörter beim Trennen vom Management-Interface "
+#~ "verwerfen"
+
+#, fuzzy
+#~ msgid "Load plug-in module"
+#~ msgstr "Plugin-Modul laden"
+
+#, fuzzy
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Shell-Kommando zum Überprüfen der interaktiven Authentifikation"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Shell-Kommando zum Erlernen neuer Teilnehmer-Adressen"
+
+#, fuzzy
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Netzwerk-Port mit HTTPS-Server teilen"
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Kryptographie-Selbsttest durchführen"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Schlüsselaustauschprotokoll für den Datenkanal"
+
+#, fuzzy
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr ""
+#~ "Verzeichnis mit vertrauenswürdigen Zertifizierungsstellen (Schlüssel und "
+#~ "Sperrlisten)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "Zertifikat explizit auf erweiterten Verwendungszweck prüfen"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr "Explizit auf normalen und erweiterten Verwendungszweck prüfen"
diff --git a/po/el/openvpn.po b/po/el/openvpn.po
index 3efbc1f868..9f1cf7b436 100644
--- a/po/el/openvpn.po
+++ b/po/el/openvpn.po
@@ -6,960 +6,575 @@ msgstr ""
"PO-Revision-Date: 2010-07-01 15:28+0200\n"
"Last-Translator: Vasilis Tsiligiannis \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« Μετάβαση στις βασικές επιλογές"
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Μετάβαση στις προχωρημένες ρυθμίσεις »"
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Ενεργοποιημένο"
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Ξεκίνησε"
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "όχι"
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "ναι (%i)"
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Θύρα"
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
+msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
+msgid "Accept options pushed from server"
msgstr ""
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "Διεργασίες OpenVPN"
+msgid "Add"
+msgstr ""
+
+msgid "Add route after establishing connection"
+msgstr ""
+
+msgid "Additional authentication over TLS"
+msgstr ""
+
+msgid "Allow client-to-client traffic"
+msgstr ""
+
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr "Επιτρέπουμε στον απομακρυσμένο να αλλάξει την IP ή τη θύρα"
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Παρακάτω είναι μία λίστα των ρυθμισμένων περιστατικών OpenVPN και της "
"τρέχουσας κατάστασής τους"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Ρύθμιση Υπηρεσίας"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Δικτυακές επιλογές"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Επιλογές VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Ρυθμίσεις κρυπτογραφίας"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Ανάγνωση επιλογών ρυθμίσεων από αρχείο"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Όνομα τοπικού μηχανήματος ή διεύθυνση IP"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Όνομα απομακρυσμένου μηχανήματος ή διεύθυνση IP"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Τυχαία επιλογή απομακρυσμένου διακομιστή"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
+msgid "Call down cmd/script before TUN/TAP close"
msgstr ""
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
+msgid "Certificate authority"
msgstr ""
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Διάστημα επαναπροσπάθειας σύνδεσης"
+msgid "Change process priority"
+msgstr ""
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Λήξη χρόνου σύνδεσης"
+msgid "Change to directory before initialization"
+msgstr ""
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Μέγιστος αριθμός προσπαθειών επανασύνδεσης"
+msgid "Check peer certificate against a CRL"
+msgstr ""
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Προσπάθεια να εντοπίσει τις ρυθμίσεις μεσολαβητή αυτόματα"
+msgid "Chroot to directory after initialization"
+msgstr ""
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Σύνδεση με το απομακρυσμένο μηχάνημα"
+msgid "Client is disabled"
+msgstr ""
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Επαναπροσπάθεια για πάντα αν υπάρχουν λάθη HTTP στο μεσολαβητή"
+msgid "Configuration category"
+msgstr ""
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Τέλος χρόνου μεσολαβητή σε δευτερόλεπτα"
+msgid "Configure client mode"
+msgstr ""
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Ορισμός εκτεταμένων ρυθμίσεων διαμεσολαβητή HTTP"
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
msgid "Connect through Socks5 proxy"
msgstr "Σύνδεση μέσω διαμεσολαβητή Socks5"
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Επαναπροσπάθεια για πάντα σε περίπτωση λαθών στο διαμεσολαβητή Socks5"
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Διάστημα επαναπροσπάθειας σύνδεσης"
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr "Μη συνδέσεις σε τοπική διεύθυνση και θύρα"
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr "Ενεργοποιημένο"
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr "Εκτέλεση της εντολής κελύφους στην αλλαγή IP του απομακρυσμένου"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
msgid "If hostname resolve fails, retry"
msgstr ""
"Αν αποτύχει η μετατροπή του ονόματος του μηχανήματος σε IP, ξαναπροσπάθησε"
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Επιτρέπουμε στον απομακρυσμένο να αλλάξει την IP ή τη θύρα"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Εκτέλεση της εντολής κελύφους στην αλλαγή IP του απομακρυσμένου"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "TCP/UDP νούμερο θύρας για το τοπικό και το απομακρυσμένο"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "TCP/UDP αριθμός θύρας για το τοπικό (εξ'ορισμού=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "TCP/UDP αριθμός θύρας για τον απομακρυσμένο (εξ'ορισμού=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Σύνδεση σε τοπική διεύθυνση και θύρα"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Μη συνδέσεις σε τοπική διεύθυνση και θύρα"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "Συσκευή tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Είδος χρησιμοποιούμενης συσκευής"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
+msgid "Instance \"%s\""
msgstr ""
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
+msgid "Invalid"
msgstr ""
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr ""
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
msgid "Keep local IP address on restart"
msgstr ""
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
+msgid "Keep remote IP address on restart"
msgstr ""
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
+msgid "Keep tun/tap device open on restart"
msgstr ""
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr ""
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr ""
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr ""
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
msgid "Key transition window"
msgstr ""
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
+msgid "Limit repeated log messages"
msgstr ""
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
+msgid "Local certificate"
msgstr ""
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
+msgid "Local host name or ip address"
+msgstr "Όνομα τοπικού μηχανήματος ή διεύθυνση IP"
+
+msgid "Local private key"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Major mode"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Make tun device IPv6 capable"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
-msgid "Check peer certificate against a CRL"
+msgid "Maximum number of queued TCP output packets"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "Διεργασίες OpenVPN"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Θύρα"
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr "Τέλος χρόνου μεσολαβητή σε δευτερόλεπτα"
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr "Τυχαία επιλογή απομακρυσμένου διακομιστή"
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr "Όνομα απομακρυσμένου μηχανήματος ή διεύθυνση IP"
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Επαναπροσπάθεια για πάντα αν υπάρχουν λάθη HTTP στο μεσολαβητή"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Επαναπροσπάθεια για πάντα σε περίπτωση λαθών στο διαμεσολαβητή Socks5"
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr "Ορισμός εκτεταμένων ρυθμίσεων διαμεσολαβητή HTTP"
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Ξεκίνησε"
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr "Μετάβαση στις προχωρημένες ρυθμίσεις »"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "TCP/UDP νούμερο θύρας για το τοπικό και το απομακρυσμένο"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "TCP/UDP αριθμός θύρας για το τοπικό (εξ'ορισμού=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "TCP/UDP αριθμός θύρας για τον απομακρυσμένο (εξ'ορισμού=1194)"
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr "Είδος χρησιμοποιούμενης συσκευής"
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr "όχι"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "Συσκευή tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr "ναι (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "« Μετάβαση στις βασικές επιλογές"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Ρύθμιση Υπηρεσίας"
+
+#~ msgid "Networking options"
+#~ msgstr "Δικτυακές επιλογές"
+
+#~ msgid "VPN options"
+#~ msgstr "Επιλογές VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Ρυθμίσεις κρυπτογραφίας"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Ανάγνωση επιλογών ρυθμίσεων από αρχείο"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Λήξη χρόνου σύνδεσης"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Μέγιστος αριθμός προσπαθειών επανασύνδεσης"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Προσπάθεια να εντοπίσει τις ρυθμίσεις μεσολαβητή αυτόματα"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Σύνδεση με το απομακρυσμένο μηχάνημα"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Σύνδεση σε τοπική διεύθυνση και θύρα"
diff --git a/po/en/openvpn.po b/po/en/openvpn.po
index 8b6faa69c1..c8ef497cf1 100644
--- a/po/en/openvpn.po
+++ b/po/en/openvpn.po
@@ -7,958 +7,633 @@ msgstr ""
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.1.1\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr "'net30', 'p2p', or 'subnet'"
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« Switch to basic configuration"
+msgid "Accept options pushed from server"
+msgstr "Accept options pushed from server"
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Switch to advanced configuration »"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Enabled"
+msgid "Add route after establishing connection"
+msgstr "Add route after establishing connection"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Started"
+msgid "Additional authentication over TLS"
+msgstr "Additional authentication over TLS"
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "no"
+msgid "Allow client-to-client traffic"
+msgstr "Allow client-to-client traffic"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "yes (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Allow multiple clients with same certificate"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Port"
+msgid "Allow only one session"
+msgstr "Allow only one session"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocol"
+msgid "Allow remote to change its IP or port"
+msgstr "Allow remote to change its IP or port"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instance \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr "Allowed maximum of connected clients"
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN instances"
+msgid "Allowed maximum of internal"
+msgstr "Allowed maximum of internal"
+
+msgid "Allowed maximum of new connections"
+msgstr "Allowed maximum of new connections"
+
+msgid "Append log to file"
+msgstr "Append log to file"
+
+msgid "Authenticate using username/password"
+msgstr "Authenticate using username/password"
+
+msgid "Automatically redirect default route"
+msgstr "Automatically redirect default route"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Below is a list of configured OpenVPN instances and their current state"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Daemon configuration"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Networking options"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "VPN options"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Cryptography settings"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Read configuration options from file"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Local host name or ip address"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Remote host name or ip address"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Randomly choose remote server"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Major mode"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Use protocol"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Connection retry interval"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Connection timeout"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Maximum connection attempt retries"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Try to sense proxy settings automatically"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Connect to remote host"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Retry indefinitely on HTTP proxy errors"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Proxy timeout in seconds"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Set extended HTTP proxy options"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Connect through Socks5 proxy"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Retry indefinitely on Socks proxy errors"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "If hostname resolve fails, retry"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Allow remote to change its IP or port"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Execute shell command on remote ip change"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "TCP/UDP port # for both local and remote"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "TCP/UDP port # for local (default=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "TCP/UDP port # for remote (default=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Bind to local address and port"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Do not bind to local address and port"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "tun/tap device"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Type of used device"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Use tun/tap device node"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Set the link layer address of the tap device"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr "'net30', 'p2p', or 'subnet'"
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Make tun device IPv6 capable"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Configure device to use IP address"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Don't actually execute ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Don't warn on ifconfig inconsistencies"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Add route after establishing connection"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Specify a default gateway for routes"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Specify a default metric for routes"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "Delay n seconds after connection "
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Execute shell cmd after routes are added"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Don't add routes automatically"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Don't pull options from server"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Automatically redirect default route"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Pass environment variables to script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Shaping for peer bandwidth"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Set timeouts in server mode"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "tun/tap inactivity timeout"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Remote ping timeout"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Restart after remote ping timeout"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Only process ping timeouts if routes exist"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Ping remote every n seconds over TCP/UDP port"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Configure a multi-homed UDP server"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Optimize TUN/TAP/UDP writes"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Remap SIGUSR1 signals"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Keep tun/tap device open on restart"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Keep remote IP address on restart"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Keep local IP address on restart"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Don't re-read key on restart"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "TOS passthrough (applies to IPv4 only)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Set tun/tap device MTU"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Set tun/tap device overhead"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Set TCP/UDP MTU"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Enable Path MTU discovery"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Empirically measure MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Enable internal datagram fragmentation"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Set upper bound on TCP MSS"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Set the TCP/UDP send buffer size"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Set the TCP/UDP receive buffer size"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Set tun/tap TX queue length"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Disable Paging"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Shell cmd to execute after tun device open"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "Delay tun/tap open and up script execution"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Shell cmd to run after tun device close"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr "Call down cmd/script before TUN/TAP close"
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Run up/down scripts for all restarts"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Set UID to user"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Set GID to group"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Chroot to directory after initialization"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Change to directory before initialization"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Daemonize after initialization"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Output to syslog and do not daemonize"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Run as an inetd or xinetd server"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Write log to file"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Append log to file"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Don't log timestamps"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Write process ID to file"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Change process priority"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Echo parameters to log"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Set output verbosity"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Limit repeated log messages"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Write status to file every n seconds"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Status file format version"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Disable options consistency check"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Special stress testing mode"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Use fast LZO compression"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Don't use adaptive lzo compression"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Enable management interface on IP port"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "Management interface will connect as a TCP client"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Query management channel for private key"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Start OpenVPN in a hibernating state"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Issue SIGUSR1 on management disconnect"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Forget passwords on management disconnect"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Number of lines for log file history"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Load plug-in module"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Configure server mode"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Configure server bridge"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Push options to peer"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "Don't inherit global push options"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "Set aside a pool of subnets"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Use individual addresses rather than /30 subnets"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Persist/unpersist ifconfig-pool"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Push an ifconfig option to remote"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Route subnet to client"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "Client is disabled"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "Don't require client certificate"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Use username as common name"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Script to verify interactive authentication"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Allow client-to-client traffic"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Allow multiple clients with same certificate"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Run script cmd on client connection"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Run script cmd on client disconnection"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Directory for custom client config files"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr "Refuse connection if no custom client config"
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "Temporary directory for client-connect return file"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "Set size of real and virtual address hash tables"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Number of allocated broadcast buffers"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Maximum number of queued TCP output packets"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Script to validate client virtual addresses"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Allowed maximum of new connections"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Allowed maximum of connected clients"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Allowed maximum of internal"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Proxy incoming HTTPS sessions"
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Configure client mode"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Authenticate using username/password"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Accept options pushed from server"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Handling of authentication failures"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Send notification to peer on disconnect"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Enable Static Key encryption mode (non-TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "HMAC authentication for packets"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Encryption cipher for packets"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Size of cipher key"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Enable OpenSSL hardware crypto engines"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Disable replay protection"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Silence the output of replay warnings"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "Replay protection sliding window size"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Disable cipher initialisation vector"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "Persist replay-protection state"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Run a self-test of crypto features"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Enable TLS and assume server role"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Enable TLS and assume client role"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Data channel key exchange method"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
msgid "Certificate authority"
msgstr "Certificate authority"
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Directory of trusted certificates (CAs and CRLs)"
+msgid "Change process priority"
+msgstr "Change process priority"
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Diffie Hellman parameters"
+msgid "Change to directory before initialization"
+msgstr "Change to directory before initialization"
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Local certificate"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Local private key"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "PKCS#12 file containing keys"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "TLS cipher"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "Retransmit timeout on TLS control channel"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Renegotiate data chan. key after bytes"
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "Renegotiate data chan. key after packets"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Renegotiate data chan. key after seconds"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Timeframe for key exchange"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Key transition window"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Allow only one session"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Exit on TLS negotiation failure"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Additional authentication over TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "Get PEM password from controlling tty before we daemonize"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Don't cache --askpass or --auth-user-pass passwords"
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr "Check peer certificate against a CRL"
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr "Chroot to directory after initialization"
+
+msgid "Client is disabled"
+msgstr "Client is disabled"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "Configure client mode"
+
+msgid "Configure server bridge"
+msgstr "Configure server bridge"
+
+msgid "Configure server mode"
+msgstr "Configure server mode"
+
+msgid "Connect through Socks5 proxy"
+msgstr "Connect through Socks5 proxy"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Connection retry interval"
+
+msgid "Daemonize after initialization"
+msgstr "Daemonize after initialization"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "Delay tun/tap open and up script execution"
+
+msgid "Diffie Hellman parameters"
+msgstr "Diffie Hellman parameters"
+
+msgid "Directory for custom client config files"
+msgstr "Directory for custom client config files"
+
+msgid "Disable Paging"
+msgstr "Disable Paging"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Disable cipher initialisation vector"
+
+msgid "Disable options consistency check"
+msgstr "Disable options consistency check"
+
+msgid "Disable replay protection"
+msgstr "Disable replay protection"
+
+msgid "Do not bind to local address and port"
+msgstr "Do not bind to local address and port"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Don't actually execute ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Don't add routes automatically"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Don't cache --askpass or --auth-user-pass passwords"
+
+msgid "Don't inherit global push options"
+msgstr "Don't inherit global push options"
+
+msgid "Don't log timestamps"
+msgstr "Don't log timestamps"
+
+msgid "Don't re-read key on restart"
+msgstr "Don't re-read key on restart"
+
+msgid "Don't require client certificate"
+msgstr "Don't require client certificate"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Don't use adaptive lzo compression"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Don't warn on ifconfig inconsistencies"
+
+msgid "Echo parameters to log"
+msgstr "Echo parameters to log"
+
+msgid "Empirically measure MTU"
+msgstr "Empirically measure MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Enable OpenSSL hardware crypto engines"
+
+msgid "Enable Path MTU discovery"
+msgstr "Enable Path MTU discovery"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Enable Static Key encryption mode (non-TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Enable TLS and assume client role"
+
+msgid "Enable TLS and assume server role"
+msgstr "Enable TLS and assume server role"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Enable internal datagram fragmentation"
+
+msgid "Enable management interface on IP port"
+msgstr "Enable management interface on IP port"
+
+msgid "Enabled"
+msgstr "Enabled"
+
+msgid "Encryption cipher for packets"
+msgstr "Encryption cipher for packets"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Execute shell cmd after routes are added"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Execute shell command on remote ip change"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Exit on TLS negotiation failure"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "Get PEM password from controlling tty before we daemonize"
+
+msgid "HMAC authentication for packets"
+msgstr "HMAC authentication for packets"
+
+msgid "Handling of authentication failures"
+msgstr "Handling of authentication failures"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "If hostname resolve fails, retry"
+
+msgid "Instance \"%s\""
+msgstr "Instance \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Keep local IP address on restart"
+
+msgid "Keep remote IP address on restart"
+msgstr "Keep remote IP address on restart"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Keep tun/tap device open on restart"
+
+msgid "Key transition window"
+msgstr "Key transition window"
+
+msgid "Limit repeated log messages"
+msgstr "Limit repeated log messages"
+
+msgid "Local certificate"
+msgstr "Local certificate"
+
+msgid "Local host name or ip address"
+msgstr "Local host name or ip address"
+
+msgid "Local private key"
+msgstr "Local private key"
+
+msgid "Major mode"
+msgstr "Major mode"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Make tun device IPv6 capable"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Maximum number of queued TCP output packets"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Number of allocated broadcast buffers"
+
+msgid "Number of lines for log file history"
+msgstr "Number of lines for log file history"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr "Only accept connections from given X509 name"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr "Only process ping timeouts if routes exist"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "OpenVPN instances"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Optimize TUN/TAP/UDP writes"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Output to syslog and do not daemonize"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "PKCS#12 file containing keys"
+
+msgid "Pass environment variables to script"
+msgstr "Pass environment variables to script"
+
+msgid "Persist replay-protection state"
+msgstr "Persist replay-protection state"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Persist/unpersist ifconfig-pool"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Ping remote every n seconds over TCP/UDP port"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Protocol"
+msgstr "Protocol"
+
+msgid "Proxy timeout in seconds"
+msgstr "Proxy timeout in seconds"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Push an ifconfig option to remote"
+
+msgid "Push options to peer"
+msgstr "Push options to peer"
+
+msgid "Query management channel for private key"
+msgstr "Query management channel for private key"
+
+msgid "Randomly choose remote server"
+msgstr "Randomly choose remote server"
+
+msgid "Refuse connection if no custom client config"
+msgstr "Refuse connection if no custom client config"
+
+msgid "Remap SIGUSR1 signals"
+msgstr "Remap SIGUSR1 signals"
+
+msgid "Remote host name or ip address"
+msgstr "Remote host name or ip address"
+
+msgid "Remote ping timeout"
+msgstr "Remote ping timeout"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Renegotiate data chan. key after bytes"
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "Renegotiate data chan. key after packets"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Renegotiate data chan. key after seconds"
+
+msgid "Replay protection sliding window size"
+msgstr "Replay protection sliding window size"
+
msgid "Require explicit designation on certificate"
msgstr "Require explicit designation on certificate"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "Require explicit key usage on certificate"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
+msgstr "Restart after remote ping timeout"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
-msgstr "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr "Retransmit timeout on TLS control channel"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Retry indefinitely on HTTP proxy errors"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Retry indefinitely on Socks proxy errors"
+
+msgid "Route subnet to client"
+msgstr "Route subnet to client"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Run as an inetd or xinetd server"
+
+msgid "Run script cmd on client connection"
+msgstr "Run script cmd on client connection"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Run script cmd on client disconnection"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Run up/down scripts for all restarts"
+
+msgid "Send notification to peer on disconnect"
+msgstr "Send notification to peer on disconnect"
+
+msgid "Set GID to group"
+msgstr "Set GID to group"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Set TCP/UDP MTU"
+
+msgid "Set UID to user"
+msgstr "Set UID to user"
+
+msgid "Set aside a pool of subnets"
+msgstr "Set aside a pool of subnets"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Set extended HTTP proxy options"
+
+msgid "Set output verbosity"
+msgstr "Set output verbosity"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "Set size of real and virtual address hash tables"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Set the TCP/UDP receive buffer size"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Set the TCP/UDP send buffer size"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Set tun/tap TX queue length"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "Set tun/tap device MTU"
+
+msgid "Set tun/tap device overhead"
+msgstr "Set tun/tap device overhead"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Set upper bound on TCP MSS"
+
+msgid "Shaping for peer bandwidth"
+msgstr "Shaping for peer bandwidth"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Shell cmd to execute after tun device open"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Shell cmd to run after tun device close"
+
+msgid "Shell command to verify X509 name"
+msgstr "Shell command to verify X509 name"
+
+msgid "Silence the output of replay warnings"
+msgstr "Silence the output of replay warnings"
+
+msgid "Size of cipher key"
+msgstr "Size of cipher key"
+
+msgid "Specify a default gateway for routes"
+msgstr "Specify a default gateway for routes"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Start OpenVPN in a hibernating state"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Started"
+
+msgid "Status file format version"
+msgstr "Status file format version"
+
+msgid "Switch to advanced configuration »"
+msgstr "Switch to advanced configuration »"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "TCP/UDP port # for both local and remote"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "TCP/UDP port # for local (default=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "TCP/UDP port # for remote (default=1194)"
+
+msgid "TLS cipher"
+msgstr "TLS cipher"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "TOS passthrough (applies to IPv4 only)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "Temporary directory for client-connect return file"
+
+msgid "Timeframe for key exchange"
+msgstr "Timeframe for key exchange"
+
+msgid "Type of used device"
+msgstr "Type of used device"
+
+msgid "Use fast LZO compression"
+msgstr "Use fast LZO compression"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Use individual addresses rather than /30 subnets"
+
+msgid "Use protocol"
+msgstr "Use protocol"
+
+msgid "Use tun/tap device node"
+msgstr "Use tun/tap device node"
+
+msgid "Use username as common name"
+msgstr "Use username as common name"
+
+msgid "Write log to file"
+msgstr "Write log to file"
+
+msgid "Write process ID to file"
+msgstr "Write process ID to file"
+
+msgid "Write status to file every n seconds"
+msgstr "Write status to file every n seconds"
+
+msgid "no"
+msgstr "no"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "tun/tap device"
+
+msgid "tun/tap inactivity timeout"
+msgstr "tun/tap inactivity timeout"
+
+msgid "yes (%i)"
+msgstr "yes (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "« Switch to basic configuration"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Daemon configuration"
+
+#~ msgid "Networking options"
+#~ msgstr "Networking options"
+
+#~ msgid "VPN options"
+#~ msgstr "VPN options"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Cryptography settings"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Read configuration options from file"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Connection timeout"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Maximum connection attempt retries"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Try to sense proxy settings automatically"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Connect to remote host"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Bind to local address and port"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Set the link layer address of the tap device"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Configure device to use IP address"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Specify a default metric for routes"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Delay n seconds after connection "
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Don't pull options from server"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Set timeouts in server mode"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Configure a multi-homed UDP server"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Special stress testing mode"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "Management interface will connect as a TCP client"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Issue SIGUSR1 on management disconnect"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Forget passwords on management disconnect"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Load plug-in module"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Script to verify interactive authentication"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Script to validate client virtual addresses"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Proxy incoming HTTPS sessions"
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Run a self-test of crypto features"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Data channel key exchange method"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Directory of trusted certificates (CAs and CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "Require extended explicit key usage on certificate"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr "Require normal and extended key usage on certificate"
diff --git a/po/es/openvpn.po b/po/es/openvpn.po
index c7b27057b2..559900aba0 100644
--- a/po/es/openvpn.po
+++ b/po/es/openvpn.po
@@ -7,957 +7,542 @@ msgstr ""
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.1.1\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/fr/openvpn.po b/po/fr/openvpn.po
index 687fd70954..f1eb1a942e 100644
--- a/po/fr/openvpn.po
+++ b/po/fr/openvpn.po
@@ -13,956 +13,573 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.4\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr ""
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "Afficher les paramètres de configuration standards"
+msgid "Accept options pushed from server"
+msgstr ""
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Afficher les paramètres de configuration avancés"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Activé"
+msgid "Add route after establishing connection"
+msgstr "Ajouter un routage après l'établissement de la connexion"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Démarré"
+msgid "Additional authentication over TLS"
+msgstr ""
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "non"
+msgid "Allow client-to-client traffic"
+msgstr "Autoriser le trafic entre clients"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "oui (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Permettre à plusieurs clients d'utiliser le même certificat"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Port"
+msgid "Allow only one session"
+msgstr "Autoriser seulement une session"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocole"
+msgid "Allow remote to change its IP or port"
+msgstr "Autoriser l'hôte distant à changer d'adresse IP ou de port"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instance \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr ""
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "Instances OpenVPN"
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr "Rediriger automatiquement la route par défaut"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Voici ci-dessous la liste d'instances OpenVPN configurées et leur état "
"courant"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Configuration du démon"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Paramètres réseau"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Paramètres VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Paramètres de la cryptographie"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Importer les paramètres de configuration à partir d'un fichier"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Nom ou adresse IP de l'hôte local"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Nom ou adresse IP de l'hôte distant"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Choisir au hasard un serveur distant"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Mode principal"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Utiliser le protocole"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Intervalle entre 2 tentatives de connexion"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
+msgid "Call down cmd/script before TUN/TAP close"
msgstr ""
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Nombre maximum de tentatives de connexion"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Essayer de détecter les paramètres de proxy automatiquement"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Se connecter à un hôte distant"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Ré-essayer indéfiniment suite à des erreurs du proxy HTTP"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
+msgid "Certificate authority"
msgstr ""
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
+msgid "Change process priority"
+msgstr "Modifier la priorité du processus"
+
+msgid "Change to directory before initialization"
+msgstr ""
+
+msgid "Check peer certificate against a CRL"
+msgstr ""
+
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
msgstr ""
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
msgid "Connect through Socks5 proxy"
msgstr "Se connecter via un proxy Socks5"
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Ré-essayer indéfiniment suite à des erreurs du proxy Socks"
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Si la résolution du nom de l'hôte échoue, ré-essayer"
+msgid "Connection retry interval"
+msgstr "Intervalle entre 2 tentatives de connexion"
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Autoriser l'hôte distant à changer d'adresse IP ou de port"
+msgid "Daemonize after initialization"
+msgstr "Transformer en démon après l'initialisation"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr "Paramètres Diffie Hellman"
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr "Désactiver la pagination"
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr "Ne pas attacher à l'adresse et au port local"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Ne pas exécuter réellement ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Ne pas ajouter de routes automatiquement"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr "Ne pas relire la clef au redémarrage"
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Ne pas utiliser la compression adaptative LZO"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Ne pas alerter en cas d'incohérence d'ifconfig"
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr "Mesurer le MTU empiriquement"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Activer le mode de cryptage à clef statique (non TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr "Activer l'interface de gestion sur IP port"
+
+msgid "Enabled"
+msgstr "Activé"
+
+msgid "Encryption cipher for packets"
+msgstr "Méthode de chiffrement des paquets"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Exécuter une commande shell après l'ajout des routes"
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
msgid "Execute shell command on remote ip change"
msgstr ""
"Exécuter une commande Shell suite à un changement d'IP de l'hôte distant"
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Numéro de port TCP/UDP valable pour l'hôte local et l'hôte distant"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Numéro de port TCP/UDP pour l'hôte local (par défaut 1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Numéro de port TCP/UDP pour l'hôte distant (par défaut 1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Attacher à l'adresse et au port local"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Ne pas attacher à l'adresse et au port local"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "Périphérique tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Type de périphérique utilisé"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
msgstr ""
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
msgstr ""
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
+msgid "Exit on TLS negotiation failure"
+msgstr "Arrêter suite à l'échec de la négociation TLS"
+
+msgid "Get PEM password from controlling tty before we daemonize"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
+msgid "HMAC authentication for packets"
+msgstr "Authentification HMAC des paquets"
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Si la résolution du nom de l'hôte échoue, ré-essayer"
+
+msgid "Instance \"%s\""
+msgstr "Instance \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Conserver l'adresse IP locale lors du redémarrage"
+
+msgid "Keep remote IP address on restart"
+msgstr "Conserver l'adresse IP distante lors du redémarrage"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Conserver le périphérique tun/tap ouvert au redémarrage"
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr "Certificat local"
+
+msgid "Local host name or ip address"
+msgstr "Nom ou adresse IP de l'hôte local"
+
+msgid "Local private key"
+msgstr "Clef privée locale"
+
+msgid "Major mode"
+msgstr "Mode principal"
+
msgid "Make tun device IPv6 capable"
msgstr "Rendre le périphérique tun compatible IPv6"
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Configurer le périphérique pour utiliser une adresse IP"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Ne pas exécuter réellement ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Ne pas alerter en cas d'incohérence d'ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Ajouter un routage après l'établissement de la connexion"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
+msgid "Maximum number of queued TCP output packets"
msgstr ""
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
+msgid "Number of allocated broadcast buffers"
msgstr ""
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
+msgid "Number of lines for log file history"
msgstr ""
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Exécuter une commande shell après l'ajout des routes"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Ne pas ajouter de routes automatiquement"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Ne pas récupérer les paramètres à partir du serveur"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Rediriger automatiquement la route par défaut"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Transmettre les variables d'environnement au script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
+msgid "Only accept connections from given X509 name"
msgstr ""
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
msgid "Only process ping timeouts if routes exist"
msgstr ""
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "Instances OpenVPN"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Optimiser les écritures TUN/TAP/UDP"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Envoyer à syslog et ne pas transformer en démon"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr "Transmettre les variables d'environnement au script"
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
msgid "Ping remote every n seconds over TCP/UDP port"
msgstr ""
"Envoyer un ping à l'hôte distant toutes les n secondes sur le port TCP/UDP"
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
+msgid "Policy level over usage of external programs and scripts"
msgstr ""
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Optimiser les écritures TUN/TAP/UDP"
+msgid "Port"
+msgstr "Port"
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
+msgid "Protocol"
+msgstr "Protocole"
+
+msgid "Proxy timeout in seconds"
msgstr ""
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Conserver le périphérique tun/tap ouvert au redémarrage"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Conserver l'adresse IP distante lors du redémarrage"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Conserver l'adresse IP locale lors du redémarrage"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Ne pas relire la clef au redémarrage"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Définir le MTU du périphérique tun/tap"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Définir le MTU TCP/UDP"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Mesurer le MTU empiriquement"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Définir la borne supérieure du MSS TCP"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Définir la taille de la pile d'envoi TCP/UDP"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Définir la taille de la pile de réception TCP/UDP"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Définir la taille de la pile TX tun/tap"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Désactiver la pagination"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Commande Shell à exécuter après l'ouverture du périphérique tun"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Commande Shell à exécuter après la fermeture du périphérique tun"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Exécuter les scripts up/down à tous les redémarrages"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Utiliser l'UID de cet utilisateur"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Utiliser le GID de ce groupe"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Transformer en démon après l'initialisation"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Envoyer à syslog et ne pas transformer en démon"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Exécuter en tant que serveur inetd ou xinetd"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Modifier la priorité du processus"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Utiliser la compression LZO rapide"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Ne pas utiliser la compression adaptative LZO"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Activer l'interface de gestion sur IP port"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
msgid "Push an ifconfig option to remote"
msgstr ""
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
+msgid "Push options to peer"
msgstr ""
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
+msgid "Query management channel for private key"
msgstr ""
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
+msgid "Randomly choose remote server"
+msgstr "Choisir au hasard un serveur distant"
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Autoriser le trafic entre clients"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Permettre à plusieurs clients d'utiliser le même certificat"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Exécuter une commande de script lors de la connexion d'un client"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Exécuter une commande de script lors de la déconnexion d'un client"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
msgid "Refuse connection if no custom client config"
msgstr ""
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
+msgid "Remap SIGUSR1 signals"
msgstr ""
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
+msgid "Remote host name or ip address"
+msgstr "Nom ou adresse IP de l'hôte distant"
+
+msgid "Remote ping timeout"
msgstr ""
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr ""
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr ""
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr ""
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Activer le mode de cryptage à clef statique (non TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "Authentification HMAC des paquets"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Méthode de chiffrement des paquets"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Paramètres Diffie Hellman"
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Certificat local"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Clef privée locale"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "Méthode de chiffrement TLS"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
msgid "Renegotiate data chan. key after bytes"
msgstr ""
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
msgid "Renegotiate data chan. key after packets"
msgstr ""
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
msgid "Renegotiate data chan. key after seconds"
msgstr ""
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
+msgid "Replay protection sliding window size"
msgstr ""
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Autoriser seulement une session"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Arrêter suite à l'échec de la négociation TLS"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr ""
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr ""
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr ""
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
-msgid "Check peer certificate against a CRL"
-msgstr ""
-
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Commande shell de vérification du nom X509"
-
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
-msgid "Only accept connections from given X509 name"
-msgstr ""
-
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Ré-essayer indéfiniment suite à des erreurs du proxy HTTP"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Ré-essayer indéfiniment suite à des erreurs du proxy Socks"
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Exécuter en tant que serveur inetd ou xinetd"
+
+msgid "Run script cmd on client connection"
+msgstr "Exécuter une commande de script lors de la connexion d'un client"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Exécuter une commande de script lors de la déconnexion d'un client"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Exécuter les scripts up/down à tous les redémarrages"
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr "Utiliser le GID de ce groupe"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Définir le MTU TCP/UDP"
+
+msgid "Set UID to user"
+msgstr "Utiliser l'UID de cet utilisateur"
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Définir la taille de la pile de réception TCP/UDP"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Définir la taille de la pile d'envoi TCP/UDP"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Définir la taille de la pile TX tun/tap"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "Définir le MTU du périphérique tun/tap"
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Définir la borne supérieure du MSS TCP"
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Commande Shell à exécuter après l'ouverture du périphérique tun"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Commande Shell à exécuter après la fermeture du périphérique tun"
+
+msgid "Shell command to verify X509 name"
+msgstr "Commande shell de vérification du nom X509"
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Démarré"
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr "Afficher les paramètres de configuration avancés"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Numéro de port TCP/UDP valable pour l'hôte local et l'hôte distant"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Numéro de port TCP/UDP pour l'hôte local (par défaut 1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Numéro de port TCP/UDP pour l'hôte distant (par défaut 1194)"
+
+msgid "TLS cipher"
+msgstr "Méthode de chiffrement TLS"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr "Type de périphérique utilisé"
+
+msgid "Use fast LZO compression"
+msgstr "Utiliser la compression LZO rapide"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr "Utiliser le protocole"
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr "non"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "Périphérique tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr "oui (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "Afficher les paramètres de configuration standards"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Configuration du démon"
+
+#~ msgid "Networking options"
+#~ msgstr "Paramètres réseau"
+
+#~ msgid "VPN options"
+#~ msgstr "Paramètres VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Paramètres de la cryptographie"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Importer les paramètres de configuration à partir d'un fichier"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Nombre maximum de tentatives de connexion"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Essayer de détecter les paramètres de proxy automatiquement"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Se connecter à un hôte distant"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Attacher à l'adresse et au port local"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Configurer le périphérique pour utiliser une adresse IP"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Ne pas récupérer les paramètres à partir du serveur"
diff --git a/po/he/openvpn.po b/po/he/openvpn.po
index b15c0818b1..e47e846a79 100644
--- a/po/he/openvpn.po
+++ b/po/he/openvpn.po
@@ -2,960 +2,545 @@
# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/it/openvpn.po b/po/it/openvpn.po
index e2c0302594..1cb75592e3 100644
--- a/po/it/openvpn.po
+++ b/po/it/openvpn.po
@@ -13,954 +13,553 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.4\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr ""
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« Passa alla configurazione base"
+msgid "Accept options pushed from server"
+msgstr ""
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Passa alla configurazione avanzata »"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Abilitato"
+msgid "Add route after establishing connection"
+msgstr ""
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Avviato"
+msgid "Additional authentication over TLS"
+msgstr ""
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "no"
+msgid "Allow client-to-client traffic"
+msgstr ""
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "si (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Porta"
+msgid "Allow only one session"
+msgstr ""
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocollo"
+msgid "Allow remote to change its IP or port"
+msgstr ""
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Istanza \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr ""
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN istanze"
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Sotto c'è una lista di istanze di OpenVPN configurate e il loro stato "
"corrente"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Configurazione del demone"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Opzioni di rete"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Opzioni VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Opzioni di Crittografia"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Leggi le opzioni di configurazione dal file"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr ""
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr ""
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr ""
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr ""
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr ""
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
msgid "Certificate authority"
msgstr ""
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
+msgid "Change process priority"
msgstr ""
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
+msgid "Change to directory before initialization"
msgstr ""
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr ""
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr ""
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr ""
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr "Abilitato"
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr "Istanza \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "OpenVPN istanze"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Protocol"
+msgstr "Protocollo"
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Avviato"
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr "Passa alla configurazione avanzata »"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr "no"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr "si (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "« Passa alla configurazione base"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Configurazione del demone"
+
+#~ msgid "Networking options"
+#~ msgstr "Opzioni di rete"
+
+#~ msgid "VPN options"
+#~ msgstr "Opzioni VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Opzioni di Crittografia"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Leggi le opzioni di configurazione dal file"
diff --git a/po/ja/openvpn.po b/po/ja/openvpn.po
index 9e2a211510..84ef44fb9f 100644
--- a/po/ja/openvpn.po
+++ b/po/ja/openvpn.po
@@ -13,952 +13,536 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.4\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/ms/openvpn.po b/po/ms/openvpn.po
index 2b95180738..ba543536c3 100644
--- a/po/ms/openvpn.po
+++ b/po/ms/openvpn.po
@@ -2,959 +2,544 @@
# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/no/openvpn.po b/po/no/openvpn.po
index b15c0818b1..e47e846a79 100644
--- a/po/no/openvpn.po
+++ b/po/no/openvpn.po
@@ -2,960 +2,545 @@
# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/pl/openvpn.po b/po/pl/openvpn.po
index 15fd292018..cc731040a5 100644
--- a/po/pl/openvpn.po
+++ b/po/pl/openvpn.po
@@ -2,961 +2,546 @@
# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/pt/openvpn.po b/po/pt/openvpn.po
index 1d8069e639..3c2ae00bbe 100644
--- a/po/pt/openvpn.po
+++ b/po/pt/openvpn.po
@@ -6,962 +6,638 @@ msgstr ""
"PO-Revision-Date: 2009-05-20 10:32+0200\n"
"Last-Translator: Jose Monteiro \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr "'net30', 'p2p', ou 'subnet'"
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "Mudar para configuração básica"
+msgid "Accept options pushed from server"
+msgstr "Aceitar opções enviadas pelo servidor"
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Mudar para configuração avançada"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Activado"
+msgid "Add route after establishing connection"
+msgstr "Adicionar rota após estabelecimento da ligação"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Iniciado"
+msgid "Additional authentication over TLS"
+msgstr "Autenticação adicional por TLS"
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "não"
+msgid "Allow client-to-client traffic"
+msgstr "Permitir tráfego cliente-a-cliente"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "sim (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Permitir multiplos clientes com o mesmo certificado"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Porta"
+msgid "Allow only one session"
+msgstr "Permitir apenas uma sessão"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocolo"
+msgid "Allow remote to change its IP or port"
+msgstr "Permitir a um host remoto que altere o seu IP ou porta"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instância \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr "Máximo permitido de clientes ligados"
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "Instâncias OpenVPN"
+msgid "Allowed maximum of internal"
+msgstr "Máximo permitido internamente para rotas de clientes"
+
+msgid "Allowed maximum of new connections"
+msgstr "Maximo permitido de novas ligações"
+
+msgid "Append log to file"
+msgstr "Acrescentar registos ao ficheiro"
+
+msgid "Authenticate using username/password"
+msgstr "Autenticar com username/password"
+
+msgid "Automatically redirect default route"
+msgstr "Redireccionar automaticamente a rota pre-definida"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Abaixo está uma lista de todas as instâncias OpenVPN configuradas e o seu "
"estado actual"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Configuração do processo"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Opções de rede"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Opções de VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Definições criptográficas"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Obter definições a partir de ficheiro"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Hostname ou endereço IP local"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Hostname endereço IP remoto"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Escolher o server remoto aleatoriamente"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Modo principal"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Usar protocolo"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Intervalo de reestabelecimento de ligação"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Timeout da ligação"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Máximo de tentativas de estabelecimento de ligação"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Descobrir proxy automaticamente"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Ligar a host remoto"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Tentar infinitamente sempre que existam erros de proxy HTTP"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Timeout do proxy em segundos"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Definir opções extra para o proxy HTTP"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Ligar através de um proxy Socks5"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Tentar continuamente a ligação quando existirem erros de proxy Socks"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Se a resolução de nomes falhar, tentar novamente"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Permitir a um host remoto que altere o seu IP ou porta"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Executar o comando shell quando existir alteração do IP remoto"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Porta TCP/UDP para local e remoto"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Porta TCP/UDP para local (predefinição=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Porta TCP/UDP para remoto (predefinição=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Activar no endereço e porta locais"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Não activar no endereço e porta locais"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "Dispositivo tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Tipo de dispositivo utilizado"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Utilizar dispositivo tun/tap"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Definir o endereço de link do dispositivo tap"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr "'net30', 'p2p', ou 'subnet'"
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Tornar o dispositivo tun capaz de IPv6"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Configurar o dispositivo para usar endereço IP"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Não executar ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Não avisar quando existirem inconsistencias no ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Adicionar rota após estabelecimento da ligação"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Especificar uma gateway para as rotas"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Especificar uma métrica para as rotas"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "Aguardar n segundos após a ligação"
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Executar o comando shell após as rotas serem adicionadas"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Não adicionar rotas automaticamente"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Não obter opções do servidor"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Redireccionar automaticamente a rota pre-definida"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Passar variaveis de ambiente ao script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Restringir a largura de banda ao remoto"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Definir timeouts em modo de servidor"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "Timeout de inactividade tun/tap"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Timeout do ping remoto"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Reiniciar após timeout do ping remoto"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Só processar timeouts de pings se existirem rotas"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Pingar o remoto a cada n segundos sobre a porta TCP/UDP"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Configurar um servidor UDP com vários endereços no interface"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Optimizar as escritas TUN/TAP/UDP"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Mapear os sinais SIGUSR1"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Manter o dispositivo tun/tap aberto entre reinicios"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Manter o endereço IP remoto entre reinicios"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Manter o endereço IP local entre reinicios"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Não reler a chave entre reinicios"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "Passthrough TOS (aplicavel apenas a IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Definir o MTU do dispositivo tun/tap"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Definir o overhead do dispositivo tun/tap"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Definir o MTU TCP/UDP"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Activar a descoberta do MTU do caminho"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Medição empírica de MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Activar a fragmentação interna de datagramas"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Definir tecto do MSS TCP"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Definir o buffer de envio TCP/UDP"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Definir o buffer de recepção TCP/UDP"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Definir o tamanho da queue de transmissão tun/tap"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Desactivar Paging"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Comando shell a executar após abertura do dispositivo tun"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "Retardar o script de abertura/activação tun/tap"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Comando shell a executar após fecho do dispositivo tun"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr "Executar o comando/script antes do fecho tun/tap"
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Executar scripts de abertura/activação para todos os reinicios"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Assumir UID para o utilizador"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Assumir GID para o grupo"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Chroot para o directorio apos a inicialização"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Mudar para o directório antes da inicialização"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Passar a daemon após a inicialização"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Registos para o syslog e não passar a daemon"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Executar via inetd ou xinetd"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Escrever registo para o ficheiro"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Acrescentar registos ao ficheiro"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Não registar timestamps"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Escrever PID no ficheiro"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Alterar prioridade do processo"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Escrever parametros no registo"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Definir verbosidade do registo"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Limitar repetição de entradas no registo"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Escrever estado para ficheiro a cada n segundos"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Versão de formato do ficheiro de estado"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Desactivar opções de verificação de consistência"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Modo especial de teste de stress"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Usar compressão LZO rápida"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Não usar compressão LZO adaptiva"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Activar o interface de gestão em IP porta"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "O interface de gestão ligará como um cliente TCP"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Solicitar chave privada ao canal de gestão"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Iniciar o OpenVPN em estado de hibernação"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Enviar um SIGUSR1 no fim de uma ligação de gestão"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Esquecer passwords no fim de uma ligação de gestão"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Numero de linhas para o historico do registo"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Carregar plugin"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Configurar modo de servidor"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Configurar ponte de servidor"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Enviar opções ao remoto"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "Não herdar as opções globais de envio (push)"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "Reservar um conjunto de subredes"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Usar endereços individuais em vez de subredes /30"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Manter ou não o conjunto de subredes"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Enviar uma opção ifconfig ao remoto"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Encaminhar rota da subrede para o cliente"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "Cliente desactivado"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "Não solicitar certificado ao cliente"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Usar o username como nome comum"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Script para verificar a autenticação interactiva"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Permitir tráfego cliente-a-cliente"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Permitir multiplos clientes com o mesmo certificado"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Executar script quando o cliente ligar"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Executar script quando o cliente desligar"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Directório para configurações personalizadas dos clientes"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr "Recusar ligações de clientes que não tenham configurações "
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "Directório temporário para ficheiro de retorno de ligação-cliente"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "Definir tamanho das tabelas hash de endereços reais e virtuais"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Numero de buffers de broadcast alocados"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Maximo de pacotes TCP na queue de output"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Script de validação de endereços virtuais de clientes"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Maximo permitido de novas ligações"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Máximo permitido de clientes ligados"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Máximo permitido internamente para rotas de clientes"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Sessões recebidas HTTPS por proxy "
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Configurar modo cliente"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Autenticar com username/password"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Aceitar opções enviadas pelo servidor"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Gestão de falhas de autenticação"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Notificar remoto ao desligar"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Activar modo de encriptação por chave estática (não-TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "Autenticação HMAC para pacotes"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Cifra de encriptação para pacotes"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Tamanho da chave de cifra"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Activar motor OpenSSL por hardware"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Desactivar protecção contra replay"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Silenciar o output dos avisos de replay"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "Tamanho da janela de protecção conta replay"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Desactivar o vector de inicialização da cifra"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "Manter persistência da protecção replay"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Executar um auto-teste das funcionalidades criptograficas"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Activar TLS e assumir papel de servidor"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Activar TLS e assumir papel de cliente"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Método de troca de chave do canal"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
msgid "Certificate authority"
msgstr "Autoridade certificadora"
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Directorio de certificados fidedignos (CAs e CRLs)"
+msgid "Change process priority"
+msgstr "Alterar prioridade do processo"
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Parametros Diffie-Hellman"
+msgid "Change to directory before initialization"
+msgstr "Mudar para o directório antes da inicialização"
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Certificado local"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Chave privada local"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "Ficheiro PKCS#12 com chaves"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "Cifra TLS"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "Timeout de retransmissão no canal de controlo TLS"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Renegociar chave do canal de dados após n bytes "
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "Renegociar chave do canal de dados após n pacotes"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Renegociar chave do canal de dados após n segundos"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Janela temporal para troca de chaves"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Janela para transição de chaves"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Permitir apenas uma sessão"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Fechar quando existir falha na negociacao TLS"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Autenticação adicional por TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "Obter password PEM do terminal de controlo antes de passar a daemon"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Não colocar em cache as passwords --askpass ou --auth-user-pass "
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr "Verificar certificado do remoto conta uma CRL"
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Comando shell para verificar o nome X509"
+msgid "Chroot to directory after initialization"
+msgstr "Chroot para o directorio apos a inicialização"
+
+msgid "Client is disabled"
+msgstr "Cliente desactivado"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "Configurar modo cliente"
+
+msgid "Configure server bridge"
+msgstr "Configurar ponte de servidor"
+
+msgid "Configure server mode"
+msgstr "Configurar modo de servidor"
+
+msgid "Connect through Socks5 proxy"
+msgstr "Ligar através de um proxy Socks5"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Intervalo de reestabelecimento de ligação"
+
+msgid "Daemonize after initialization"
+msgstr "Passar a daemon após a inicialização"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "Retardar o script de abertura/activação tun/tap"
+
+msgid "Diffie Hellman parameters"
+msgstr "Parametros Diffie-Hellman"
+
+msgid "Directory for custom client config files"
+msgstr "Directório para configurações personalizadas dos clientes"
+
+msgid "Disable Paging"
+msgstr "Desactivar Paging"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Desactivar o vector de inicialização da cifra"
+
+msgid "Disable options consistency check"
+msgstr "Desactivar opções de verificação de consistência"
+
+msgid "Disable replay protection"
+msgstr "Desactivar protecção contra replay"
+
+msgid "Do not bind to local address and port"
+msgstr "Não activar no endereço e porta locais"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Não executar ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Não adicionar rotas automaticamente"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Não colocar em cache as passwords --askpass ou --auth-user-pass "
+
+msgid "Don't inherit global push options"
+msgstr "Não herdar as opções globais de envio (push)"
+
+msgid "Don't log timestamps"
+msgstr "Não registar timestamps"
+
+msgid "Don't re-read key on restart"
+msgstr "Não reler a chave entre reinicios"
+
+msgid "Don't require client certificate"
+msgstr "Não solicitar certificado ao cliente"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Não usar compressão LZO adaptiva"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Não avisar quando existirem inconsistencias no ifconfig"
+
+msgid "Echo parameters to log"
+msgstr "Escrever parametros no registo"
+
+msgid "Empirically measure MTU"
+msgstr "Medição empírica de MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Activar motor OpenSSL por hardware"
+
+msgid "Enable Path MTU discovery"
+msgstr "Activar a descoberta do MTU do caminho"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Activar modo de encriptação por chave estática (não-TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Activar TLS e assumir papel de cliente"
+
+msgid "Enable TLS and assume server role"
+msgstr "Activar TLS e assumir papel de servidor"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Activar a fragmentação interna de datagramas"
+
+msgid "Enable management interface on IP port"
+msgstr "Activar o interface de gestão em IP porta"
+
+msgid "Enabled"
+msgstr "Activado"
+
+msgid "Encryption cipher for packets"
+msgstr "Cifra de encriptação para pacotes"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Executar o comando shell após as rotas serem adicionadas"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Executar o comando shell quando existir alteração do IP remoto"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Fechar quando existir falha na negociacao TLS"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "Obter password PEM do terminal de controlo antes de passar a daemon"
+
+msgid "HMAC authentication for packets"
+msgstr "Autenticação HMAC para pacotes"
+
+msgid "Handling of authentication failures"
+msgstr "Gestão de falhas de autenticação"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Se a resolução de nomes falhar, tentar novamente"
+
+msgid "Instance \"%s\""
+msgstr "Instância \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Manter o endereço IP local entre reinicios"
+
+msgid "Keep remote IP address on restart"
+msgstr "Manter o endereço IP remoto entre reinicios"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Manter o dispositivo tun/tap aberto entre reinicios"
+
+msgid "Key transition window"
+msgstr "Janela para transição de chaves"
+
+msgid "Limit repeated log messages"
+msgstr "Limitar repetição de entradas no registo"
+
+msgid "Local certificate"
+msgstr "Certificado local"
+
+msgid "Local host name or ip address"
+msgstr "Hostname ou endereço IP local"
+
+msgid "Local private key"
+msgstr "Chave privada local"
+
+msgid "Major mode"
+msgstr "Modo principal"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Tornar o dispositivo tun capaz de IPv6"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Maximo de pacotes TCP na queue de output"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Numero de buffers de broadcast alocados"
+
+msgid "Number of lines for log file history"
+msgstr "Numero de linhas para o historico do registo"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr "Aceitar ligações apenas de um dado nome X509"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr "Só processar timeouts de pings se existirem rotas"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "Instâncias OpenVPN"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Optimizar as escritas TUN/TAP/UDP"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Registos para o syslog e não passar a daemon"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "Ficheiro PKCS#12 com chaves"
+
+msgid "Pass environment variables to script"
+msgstr "Passar variaveis de ambiente ao script"
+
+msgid "Persist replay-protection state"
+msgstr "Manter persistência da protecção replay"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Manter ou não o conjunto de subredes"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Pingar o remoto a cada n segundos sobre a porta TCP/UDP"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Protocol"
+msgstr "Protocolo"
+
+msgid "Proxy timeout in seconds"
+msgstr "Timeout do proxy em segundos"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Enviar uma opção ifconfig ao remoto"
+
+msgid "Push options to peer"
+msgstr "Enviar opções ao remoto"
+
+msgid "Query management channel for private key"
+msgstr "Solicitar chave privada ao canal de gestão"
+
+msgid "Randomly choose remote server"
+msgstr "Escolher o server remoto aleatoriamente"
+
+msgid "Refuse connection if no custom client config"
+msgstr "Recusar ligações de clientes que não tenham configurações "
+
+msgid "Remap SIGUSR1 signals"
+msgstr "Mapear os sinais SIGUSR1"
+
+msgid "Remote host name or ip address"
+msgstr "Hostname endereço IP remoto"
+
+msgid "Remote ping timeout"
+msgstr "Timeout do ping remoto"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Renegociar chave do canal de dados após n bytes "
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "Renegociar chave do canal de dados após n pacotes"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Renegociar chave do canal de dados após n segundos"
+
+msgid "Replay protection sliding window size"
+msgstr "Tamanho da janela de protecção conta replay"
+
msgid "Require explicit designation on certificate"
msgstr "Requerer designação específica no certificado"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "Requerer utilização explicita de utilização de chave no certificado"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr ""
-"Requerer utilização explicita extendida de utilização de chave no certificado"
+msgid "Restart after remote ping timeout"
+msgstr "Reiniciar após timeout do ping remoto"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "openvpn_param_remote_cert_tls"
+msgid "Retransmit timeout on TLS control channel"
+msgstr "Timeout de retransmissão no canal de controlo TLS"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Tentar infinitamente sempre que existam erros de proxy HTTP"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Tentar continuamente a ligação quando existirem erros de proxy Socks"
+
+msgid "Route subnet to client"
+msgstr "Encaminhar rota da subrede para o cliente"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Executar via inetd ou xinetd"
+
+msgid "Run script cmd on client connection"
+msgstr "Executar script quando o cliente ligar"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Executar script quando o cliente desligar"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Executar scripts de abertura/activação para todos os reinicios"
+
+msgid "Send notification to peer on disconnect"
+msgstr "Notificar remoto ao desligar"
+
+msgid "Set GID to group"
+msgstr "Assumir GID para o grupo"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Definir o MTU TCP/UDP"
+
+msgid "Set UID to user"
+msgstr "Assumir UID para o utilizador"
+
+msgid "Set aside a pool of subnets"
+msgstr "Reservar um conjunto de subredes"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Definir opções extra para o proxy HTTP"
+
+msgid "Set output verbosity"
+msgstr "Definir verbosidade do registo"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "Definir tamanho das tabelas hash de endereços reais e virtuais"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Definir o buffer de recepção TCP/UDP"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Definir o buffer de envio TCP/UDP"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Definir o tamanho da queue de transmissão tun/tap"
+
+msgid "Set tun/tap adapter parameters"
msgstr ""
-"Requerer utilização explicita normal e extendida de utilização de chave no "
-"certificado"
+
+msgid "Set tun/tap device MTU"
+msgstr "Definir o MTU do dispositivo tun/tap"
+
+msgid "Set tun/tap device overhead"
+msgstr "Definir o overhead do dispositivo tun/tap"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Definir tecto do MSS TCP"
+
+msgid "Shaping for peer bandwidth"
+msgstr "Restringir a largura de banda ao remoto"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Comando shell a executar após abertura do dispositivo tun"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Comando shell a executar após fecho do dispositivo tun"
+
+msgid "Shell command to verify X509 name"
+msgstr "Comando shell para verificar o nome X509"
+
+msgid "Silence the output of replay warnings"
+msgstr "Silenciar o output dos avisos de replay"
+
+msgid "Size of cipher key"
+msgstr "Tamanho da chave de cifra"
+
+msgid "Specify a default gateway for routes"
+msgstr "Especificar uma gateway para as rotas"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Iniciar o OpenVPN em estado de hibernação"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Iniciado"
+
+msgid "Status file format version"
+msgstr "Versão de formato do ficheiro de estado"
+
+msgid "Switch to advanced configuration »"
+msgstr "Mudar para configuração avançada"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Porta TCP/UDP para local e remoto"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Porta TCP/UDP para local (predefinição=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Porta TCP/UDP para remoto (predefinição=1194)"
+
+msgid "TLS cipher"
+msgstr "Cifra TLS"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "Passthrough TOS (aplicavel apenas a IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "Directório temporário para ficheiro de retorno de ligação-cliente"
+
+msgid "Timeframe for key exchange"
+msgstr "Janela temporal para troca de chaves"
+
+msgid "Type of used device"
+msgstr "Tipo de dispositivo utilizado"
+
+msgid "Use fast LZO compression"
+msgstr "Usar compressão LZO rápida"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Usar endereços individuais em vez de subredes /30"
+
+msgid "Use protocol"
+msgstr "Usar protocolo"
+
+msgid "Use tun/tap device node"
+msgstr "Utilizar dispositivo tun/tap"
+
+msgid "Use username as common name"
+msgstr "Usar o username como nome comum"
+
+msgid "Write log to file"
+msgstr "Escrever registo para o ficheiro"
+
+msgid "Write process ID to file"
+msgstr "Escrever PID no ficheiro"
+
+msgid "Write status to file every n seconds"
+msgstr "Escrever estado para ficheiro a cada n segundos"
+
+msgid "no"
+msgstr "não"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "Dispositivo tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr "Timeout de inactividade tun/tap"
+
+msgid "yes (%i)"
+msgstr "sim (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "Mudar para configuração básica"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Configuração do processo"
+
+#~ msgid "Networking options"
+#~ msgstr "Opções de rede"
+
+#~ msgid "VPN options"
+#~ msgstr "Opções de VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Definições criptográficas"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Obter definições a partir de ficheiro"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Timeout da ligação"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Máximo de tentativas de estabelecimento de ligação"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Descobrir proxy automaticamente"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Ligar a host remoto"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Activar no endereço e porta locais"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Definir o endereço de link do dispositivo tap"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Configurar o dispositivo para usar endereço IP"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Especificar uma métrica para as rotas"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Aguardar n segundos após a ligação"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Não obter opções do servidor"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Definir timeouts em modo de servidor"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Configurar um servidor UDP com vários endereços no interface"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Modo especial de teste de stress"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "O interface de gestão ligará como um cliente TCP"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Enviar um SIGUSR1 no fim de uma ligação de gestão"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Esquecer passwords no fim de uma ligação de gestão"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Carregar plugin"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Script para verificar a autenticação interactiva"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Script de validação de endereços virtuais de clientes"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Sessões recebidas HTTPS por proxy "
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Executar um auto-teste das funcionalidades criptograficas"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Método de troca de chave do canal"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Directorio de certificados fidedignos (CAs e CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr ""
+#~ "Requerer utilização explicita extendida de utilização de chave no "
+#~ "certificado"
+
+#~ msgid "openvpn_param_remote_cert_tls"
+#~ msgstr ""
+#~ "Requerer utilização explicita normal e extendida de utilização de chave "
+#~ "no certificado"
diff --git a/po/pt_BR/openvpn.po b/po/pt_BR/openvpn.po
index 73e2742a44..1d0f17030b 100644
--- a/po/pt_BR/openvpn.po
+++ b/po/pt_BR/openvpn.po
@@ -6,962 +6,638 @@ msgstr ""
"PO-Revision-Date: 2009-05-20 10:32+0200\n"
"Last-Translator: Jose Monteiro \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr "'net30', 'p2p', ou 'subnet'"
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "Mudar para configuração básica"
+msgid "Accept options pushed from server"
+msgstr "Aceitar opções enviadas pelo servidor"
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Mudar para configuração avançada"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Activado"
+msgid "Add route after establishing connection"
+msgstr "Adicionar rota após estabelecimento da ligação"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Iniciado"
+msgid "Additional authentication over TLS"
+msgstr "Autenticação adicional por TLS"
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "não"
+msgid "Allow client-to-client traffic"
+msgstr "Permitir tráfego cliente-a-cliente"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "sim (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Permitir multiplos clientes com o mesmo certificado"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Porta"
+msgid "Allow only one session"
+msgstr "Permitir apenas uma sessão"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocolo"
+msgid "Allow remote to change its IP or port"
+msgstr "Permitir a um host remoto que altere o seu IP ou porta"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instância \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr "Máximo permitido de clientes ligados"
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "Instâncias OpenVPN"
+msgid "Allowed maximum of internal"
+msgstr "Máximo permitido internamente para rotas de clientes"
+
+msgid "Allowed maximum of new connections"
+msgstr "Maximo permitido de novas ligações"
+
+msgid "Append log to file"
+msgstr "Acrescentar registos ao ficheiro"
+
+msgid "Authenticate using username/password"
+msgstr "Autenticar com username/password"
+
+msgid "Automatically redirect default route"
+msgstr "Redireccionar automaticamente a rota pre-definida"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Abaixo está uma lista de todas as instâncias OpenVPN configuradas e o seu "
"estado actual"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Configuração do processo"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Opções de rede"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Opções de VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Definições criptográficas"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Obter definições a partir de ficheiro"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Hostname ou endereço IP local"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Hostname endereço IP remoto"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Escolher o server remoto aleatoriamente"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Modo principal"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Usar protocolo"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Intervalo de reestabelecimento de ligação"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Timeout da ligação"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Máximo de tentativas de estabelecimento de ligação"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Descobrir proxy automaticamente"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Ligar a host remoto"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Tentar infinitamente sempre que existam erros de proxy HTTP"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Timeout do proxy em segundos"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Definir opções extra para o proxy HTTP"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Ligar através de um proxy Socks5"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Tentar continuamente a ligação quando existirem erros de proxy Socks"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Se a resolução de nomes falhar, tentar novamente"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Permitir a um host remoto que altere o seu IP ou porta"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Executar o comando shell quando existir alteração do IP remoto"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Porta TCP/UDP para local e remoto"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Porta TCP/UDP para local (predefinição=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Porta TCP/UDP para remoto (predefinição=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Activar no endereço e porta locais"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Não activar no endereço e porta locais"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "Dispositivo tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Tipo de dispositivo utilizado"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Utilizar dispositivo tun/tap"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Definir o endereço de link do dispositivo tap"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr "'net30', 'p2p', ou 'subnet'"
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Tornar o dispositivo tun capaz de IPv6"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Configurar o dispositivo para usar endereço IP"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Não executar ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Não avisar quando existirem inconsistencias no ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Adicionar rota após estabelecimento da ligação"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Especificar uma gateway para as rotas"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Especificar uma métrica para as rotas"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "Aguardar n segundos após a ligação"
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Executar o comando shell após as rotas serem adicionadas"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Não adicionar rotas automaticamente"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Não obter opções do servidor"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Redireccionar automaticamente a rota pre-definida"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Passar variaveis de ambiente ao script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Restringir a largura de banda ao remoto"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Definir timeouts em modo de servidor"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "Timeout de inactividade tun/tap"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Timeout do ping remoto"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Reiniciar após timeout do ping remoto"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Só processar timeouts de pings se existirem rotas"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Pingar o remoto a cada n segundos sobre a porta TCP/UDP"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Configurar um servidor UDP com vários endereços no interface"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Optimizar as escritas TUN/TAP/UDP"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Mapear os sinais SIGUSR1"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Manter o dispositivo tun/tap aberto entre reinicios"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Manter o endereço IP remoto entre reinicios"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Manter o endereço IP local entre reinicios"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Não reler a chave entre reinicios"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "Passthrough TOS (aplicavel apenas a IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Definir o MTU do dispositivo tun/tap"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Definir o overhead do dispositivo tun/tap"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Definir o MTU TCP/UDP"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Activar a descoberta do MTU do caminho"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Medição empírica de MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Activar a fragmentação interna de datagramas"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Definir tecto do MSS TCP"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Definir o buffer de envio TCP/UDP"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Definir o buffer de recepção TCP/UDP"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Definir o tamanho da queue de transmissão tun/tap"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Desactivar Paging"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Comando shell a executar após abertura do dispositivo tun"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "Retardar o script de abertura/activação tun/tap"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Comando shell a executar após fecho do dispositivo tun"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr "Executar o comando/script antes do fecho tun/tap"
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Executar scripts de abertura/activação para todos os reinicios"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Assumir UID para o utilizador"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Assumir GID para o grupo"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Chroot para o directorio apos a inicialização"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Mudar para o directório antes da inicialização"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Passar a daemon após a inicialização"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Registos para o syslog e não passar a daemon"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Executar via inetd ou xinetd"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Escrever registo para o ficheiro"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Acrescentar registos ao ficheiro"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Não registar timestamps"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Escrever PID no ficheiro"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Alterar prioridade do processo"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Escrever parametros no registo"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Definir verbosidade do registo"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Limitar repetição de entradas no registo"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Escrever estado para ficheiro a cada n segundos"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Versão de formato do ficheiro de estado"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Desactivar opções de verificação de consistência"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Modo especial de teste de stress"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Usar compressão LZO rápida"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Não usar compressão LZO adaptiva"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Activar o interface de gestão em IP porta"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "O interface de gestão ligará como um cliente TCP"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Solicitar chave privada ao canal de gestão"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Iniciar o OpenVPN em estado de hibernação"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Enviar um SIGUSR1 no fim de uma ligação de gestão"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Esquecer passwords no fim de uma ligação de gestão"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Numero de linhas para o historico do registo"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Carregar plugin"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Configurar modo de servidor"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Configurar ponte de servidor"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Enviar opções ao remoto"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "Não herdar as opções globais de envio (push)"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "Reservar um conjunto de subredes"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Usar endereços individuais em vez de subredes /30"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Manter ou não o conjunto de subredes"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Enviar uma opção ifconfig ao remoto"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Encaminhar rota da subrede para o cliente"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "Cliente desactivado"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "Não solicitar certificado ao cliente"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Usar o username como nome comum"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Script para verificar a autenticação interactiva"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Permitir tráfego cliente-a-cliente"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Permitir multiplos clientes com o mesmo certificado"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Executar script quando o cliente ligar"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Executar script quando o cliente desligar"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Directório para configurações personalizadas dos clientes"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr "Recusar ligações de clientes que não tenham configurações "
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "Directório temporário para ficheiro de retorno de ligação-cliente"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "Definir tamanho das tabelas hash de endereços reais e virtuais"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Numero de buffers de broadcast alocados"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Maximo de pacotes TCP na queue de output"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Script de validação de endereços virtuais de clientes"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Maximo permitido de novas ligações"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Máximo permitido de clientes ligados"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Máximo permitido internamente para rotas de clientes"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Sessões recebidas HTTPS por proxy "
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Configurar modo cliente"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Autenticar com username/password"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Aceitar opções enviadas pelo servidor"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Gestão de falhas de autenticação"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Notificar remoto ao desligar"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Activar modo de encriptação por chave estática (não-TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "Autenticação HMAC para pacotes"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Cifra de encriptação para pacotes"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Tamanho da chave de cifra"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Activar motor OpenSSL por hardware"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Desactivar protecção contra replay"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Silenciar o output dos avisos de replay"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "Tamanho da janela de protecção conta replay"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Desactivar o vector de inicialização da cifra"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "Manter persistência da protecção replay"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Executar um auto-teste das funcionalidades criptograficas"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Activar TLS e assumir papel de servidor"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Activar TLS e assumir papel de cliente"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Método de troca de chave do canal"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
msgid "Certificate authority"
msgstr "Autoridade certificadora"
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Directorio de certificados fidedignos (CAs e CRLs)"
+msgid "Change process priority"
+msgstr "Alterar prioridade do processo"
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Parametros Diffie-Hellman"
+msgid "Change to directory before initialization"
+msgstr "Mudar para o directório antes da inicialização"
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Certificado local"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Chave privada local"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "Ficheiro PKCS#12 com chaves"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "Cifra TLS"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "Timeout de retransmissão no canal de controlo TLS"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Renegociar chave do canal de dados após n bytes "
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "Renegociar chave do canal de dados após n pacotes"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Renegociar chave do canal de dados após n segundos"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Janela temporal para troca de chaves"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Janela para transição de chaves"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Permitir apenas uma sessão"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Fechar quando existir falha na negociacao TLS"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Autenticação adicional por TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "Obter password PEM do terminal de controlo antes de passar a daemon"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Não colocar em cache as passwords --askpass ou --auth-user-pass "
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr "Verificar certificado do remoto conta uma CRL"
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Comando shell para verificar o nome X509"
+msgid "Chroot to directory after initialization"
+msgstr "Chroot para o directorio apos a inicialização"
+
+msgid "Client is disabled"
+msgstr "Cliente desactivado"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "Configurar modo cliente"
+
+msgid "Configure server bridge"
+msgstr "Configurar ponte de servidor"
+
+msgid "Configure server mode"
+msgstr "Configurar modo de servidor"
+
+msgid "Connect through Socks5 proxy"
+msgstr "Ligar através de um proxy Socks5"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Intervalo de reestabelecimento de ligação"
+
+msgid "Daemonize after initialization"
+msgstr "Passar a daemon após a inicialização"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "Retardar o script de abertura/activação tun/tap"
+
+msgid "Diffie Hellman parameters"
+msgstr "Parametros Diffie-Hellman"
+
+msgid "Directory for custom client config files"
+msgstr "Directório para configurações personalizadas dos clientes"
+
+msgid "Disable Paging"
+msgstr "Desactivar Paging"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Desactivar o vector de inicialização da cifra"
+
+msgid "Disable options consistency check"
+msgstr "Desactivar opções de verificação de consistência"
+
+msgid "Disable replay protection"
+msgstr "Desactivar protecção contra replay"
+
+msgid "Do not bind to local address and port"
+msgstr "Não activar no endereço e porta locais"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Não executar ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Não adicionar rotas automaticamente"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Não colocar em cache as passwords --askpass ou --auth-user-pass "
+
+msgid "Don't inherit global push options"
+msgstr "Não herdar as opções globais de envio (push)"
+
+msgid "Don't log timestamps"
+msgstr "Não registar timestamps"
+
+msgid "Don't re-read key on restart"
+msgstr "Não reler a chave entre reinicios"
+
+msgid "Don't require client certificate"
+msgstr "Não solicitar certificado ao cliente"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Não usar compressão LZO adaptiva"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Não avisar quando existirem inconsistencias no ifconfig"
+
+msgid "Echo parameters to log"
+msgstr "Escrever parametros no registo"
+
+msgid "Empirically measure MTU"
+msgstr "Medição empírica de MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Activar motor OpenSSL por hardware"
+
+msgid "Enable Path MTU discovery"
+msgstr "Activar a descoberta do MTU do caminho"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Activar modo de encriptação por chave estática (não-TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Activar TLS e assumir papel de cliente"
+
+msgid "Enable TLS and assume server role"
+msgstr "Activar TLS e assumir papel de servidor"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Activar a fragmentação interna de datagramas"
+
+msgid "Enable management interface on IP port"
+msgstr "Activar o interface de gestão em IP porta"
+
+msgid "Enabled"
+msgstr "Activado"
+
+msgid "Encryption cipher for packets"
+msgstr "Cifra de encriptação para pacotes"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Executar o comando shell após as rotas serem adicionadas"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Executar o comando shell quando existir alteração do IP remoto"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Fechar quando existir falha na negociacao TLS"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "Obter password PEM do terminal de controlo antes de passar a daemon"
+
+msgid "HMAC authentication for packets"
+msgstr "Autenticação HMAC para pacotes"
+
+msgid "Handling of authentication failures"
+msgstr "Gestão de falhas de autenticação"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Se a resolução de nomes falhar, tentar novamente"
+
+msgid "Instance \"%s\""
+msgstr "Instância \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Manter o endereço IP local entre reinicios"
+
+msgid "Keep remote IP address on restart"
+msgstr "Manter o endereço IP remoto entre reinicios"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Manter o dispositivo tun/tap aberto entre reinicios"
+
+msgid "Key transition window"
+msgstr "Janela para transição de chaves"
+
+msgid "Limit repeated log messages"
+msgstr "Limitar repetição de entradas no registo"
+
+msgid "Local certificate"
+msgstr "Certificado local"
+
+msgid "Local host name or ip address"
+msgstr "Hostname ou endereço IP local"
+
+msgid "Local private key"
+msgstr "Chave privada local"
+
+msgid "Major mode"
+msgstr "Modo principal"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Tornar o dispositivo tun capaz de IPv6"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Maximo de pacotes TCP na queue de output"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Numero de buffers de broadcast alocados"
+
+msgid "Number of lines for log file history"
+msgstr "Numero de linhas para o historico do registo"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr "Aceitar ligações apenas de um dado nome X509"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr "Só processar timeouts de pings se existirem rotas"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "Instâncias OpenVPN"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Optimizar as escritas TUN/TAP/UDP"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Registos para o syslog e não passar a daemon"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "Ficheiro PKCS#12 com chaves"
+
+msgid "Pass environment variables to script"
+msgstr "Passar variaveis de ambiente ao script"
+
+msgid "Persist replay-protection state"
+msgstr "Manter persistência da protecção replay"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Manter ou não o conjunto de subredes"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Pingar o remoto a cada n segundos sobre a porta TCP/UDP"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Protocol"
+msgstr "Protocolo"
+
+msgid "Proxy timeout in seconds"
+msgstr "Timeout do proxy em segundos"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Enviar uma opção ifconfig ao remoto"
+
+msgid "Push options to peer"
+msgstr "Enviar opções ao remoto"
+
+msgid "Query management channel for private key"
+msgstr "Solicitar chave privada ao canal de gestão"
+
+msgid "Randomly choose remote server"
+msgstr "Escolher o server remoto aleatoriamente"
+
+msgid "Refuse connection if no custom client config"
+msgstr "Recusar ligações de clientes que não tenham configurações "
+
+msgid "Remap SIGUSR1 signals"
+msgstr "Mapear os sinais SIGUSR1"
+
+msgid "Remote host name or ip address"
+msgstr "Hostname endereço IP remoto"
+
+msgid "Remote ping timeout"
+msgstr "Timeout do ping remoto"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Renegociar chave do canal de dados após n bytes "
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "Renegociar chave do canal de dados após n pacotes"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Renegociar chave do canal de dados após n segundos"
+
+msgid "Replay protection sliding window size"
+msgstr "Tamanho da janela de protecção conta replay"
+
msgid "Require explicit designation on certificate"
msgstr "Requerer designação específica no certificado"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "Requerer utilização explicita de utilização de chave no certificado"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr ""
-"Requerer utilização explicita extendida de utilização de chave no certificado"
+msgid "Restart after remote ping timeout"
+msgstr "Reiniciar após timeout do ping remoto"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "openvpn_param_remote_cert_tls"
+msgid "Retransmit timeout on TLS control channel"
+msgstr "Timeout de retransmissão no canal de controlo TLS"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Tentar infinitamente sempre que existam erros de proxy HTTP"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Tentar continuamente a ligação quando existirem erros de proxy Socks"
+
+msgid "Route subnet to client"
+msgstr "Encaminhar rota da subrede para o cliente"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Executar via inetd ou xinetd"
+
+msgid "Run script cmd on client connection"
+msgstr "Executar script quando o cliente ligar"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Executar script quando o cliente desligar"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Executar scripts de abertura/activação para todos os reinicios"
+
+msgid "Send notification to peer on disconnect"
+msgstr "Notificar remoto ao desligar"
+
+msgid "Set GID to group"
+msgstr "Assumir GID para o grupo"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Definir o MTU TCP/UDP"
+
+msgid "Set UID to user"
+msgstr "Assumir UID para o utilizador"
+
+msgid "Set aside a pool of subnets"
+msgstr "Reservar um conjunto de subredes"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Definir opções extra para o proxy HTTP"
+
+msgid "Set output verbosity"
+msgstr "Definir verbosidade do registo"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "Definir tamanho das tabelas hash de endereços reais e virtuais"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Definir o buffer de recepção TCP/UDP"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Definir o buffer de envio TCP/UDP"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Definir o tamanho da queue de transmissão tun/tap"
+
+msgid "Set tun/tap adapter parameters"
msgstr ""
-"Requerer utilização explicita normal e extendida de utilização de chave no "
-"certificado"
+
+msgid "Set tun/tap device MTU"
+msgstr "Definir o MTU do dispositivo tun/tap"
+
+msgid "Set tun/tap device overhead"
+msgstr "Definir o overhead do dispositivo tun/tap"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Definir tecto do MSS TCP"
+
+msgid "Shaping for peer bandwidth"
+msgstr "Restringir a largura de banda ao remoto"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Comando shell a executar após abertura do dispositivo tun"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Comando shell a executar após fecho do dispositivo tun"
+
+msgid "Shell command to verify X509 name"
+msgstr "Comando shell para verificar o nome X509"
+
+msgid "Silence the output of replay warnings"
+msgstr "Silenciar o output dos avisos de replay"
+
+msgid "Size of cipher key"
+msgstr "Tamanho da chave de cifra"
+
+msgid "Specify a default gateway for routes"
+msgstr "Especificar uma gateway para as rotas"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Iniciar o OpenVPN em estado de hibernação"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Iniciado"
+
+msgid "Status file format version"
+msgstr "Versão de formato do ficheiro de estado"
+
+msgid "Switch to advanced configuration »"
+msgstr "Mudar para configuração avançada"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Porta TCP/UDP para local e remoto"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Porta TCP/UDP para local (predefinição=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Porta TCP/UDP para remoto (predefinição=1194)"
+
+msgid "TLS cipher"
+msgstr "Cifra TLS"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "Passthrough TOS (aplicavel apenas a IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "Directório temporário para ficheiro de retorno de ligação-cliente"
+
+msgid "Timeframe for key exchange"
+msgstr "Janela temporal para troca de chaves"
+
+msgid "Type of used device"
+msgstr "Tipo de dispositivo utilizado"
+
+msgid "Use fast LZO compression"
+msgstr "Usar compressão LZO rápida"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Usar endereços individuais em vez de subredes /30"
+
+msgid "Use protocol"
+msgstr "Usar protocolo"
+
+msgid "Use tun/tap device node"
+msgstr "Utilizar dispositivo tun/tap"
+
+msgid "Use username as common name"
+msgstr "Usar o username como nome comum"
+
+msgid "Write log to file"
+msgstr "Escrever registo para o ficheiro"
+
+msgid "Write process ID to file"
+msgstr "Escrever PID no ficheiro"
+
+msgid "Write status to file every n seconds"
+msgstr "Escrever estado para ficheiro a cada n segundos"
+
+msgid "no"
+msgstr "não"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "Dispositivo tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr "Timeout de inactividade tun/tap"
+
+msgid "yes (%i)"
+msgstr "sim (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "Mudar para configuração básica"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Configuração do processo"
+
+#~ msgid "Networking options"
+#~ msgstr "Opções de rede"
+
+#~ msgid "VPN options"
+#~ msgstr "Opções de VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Definições criptográficas"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Obter definições a partir de ficheiro"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Timeout da ligação"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Máximo de tentativas de estabelecimento de ligação"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Descobrir proxy automaticamente"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Ligar a host remoto"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Activar no endereço e porta locais"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Definir o endereço de link do dispositivo tap"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Configurar o dispositivo para usar endereço IP"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Especificar uma métrica para as rotas"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Aguardar n segundos após a ligação"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Não obter opções do servidor"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Definir timeouts em modo de servidor"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Configurar um servidor UDP com vários endereços no interface"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Modo especial de teste de stress"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "O interface de gestão ligará como um cliente TCP"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Enviar um SIGUSR1 no fim de uma ligação de gestão"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Esquecer passwords no fim de uma ligação de gestão"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Carregar plugin"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Script para verificar a autenticação interactiva"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Script de validação de endereços virtuais de clientes"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Sessões recebidas HTTPS por proxy "
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Executar um auto-teste das funcionalidades criptograficas"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Método de troca de chave do canal"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Directorio de certificados fidedignos (CAs e CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr ""
+#~ "Requerer utilização explicita extendida de utilização de chave no "
+#~ "certificado"
+
+#~ msgid "openvpn_param_remote_cert_tls"
+#~ msgstr ""
+#~ "Requerer utilização explicita normal e extendida de utilização de chave "
+#~ "no certificado"
diff --git a/po/ro/freifunk.po b/po/ro/freifunk.po
index 7485fbe34e..137aca179d 100644
--- a/po/ro/freifunk.po
+++ b/po/ro/freifunk.po
@@ -1,10 +1,11 @@
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
diff --git a/po/ro/openvpn.po b/po/ro/openvpn.po
index 90995ad428..f66147dda9 100644
--- a/po/ro/openvpn.po
+++ b/po/ro/openvpn.po
@@ -2,961 +2,546 @@
# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
+"Language: \n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/ru/openvpn.po b/po/ru/openvpn.po
index a82c464d3e..6f8973c3ec 100644
--- a/po/ru/openvpn.po
+++ b/po/ru/openvpn.po
@@ -10,960 +10,631 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.4\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« Перейти к основным настройкам"
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Перейти к расширенным настройкам »"
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Включено"
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Запущено"
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "нет"
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "да (%i)"
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Порт"
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Протокол"
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Процесс \"%s\""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN процессы"
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr "Список настроенных процессов OpenVPN и их текущее состояние"
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Конфигурация демона"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Сетевые настройки"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Настройки VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Настройки шифрования"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Получить конфигурацию из файла"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Имя локального хоста или IP адрес"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Имя удаленного хоста или IP адрес"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Случайно выбирать удаленный сервер"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Основной режим"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Использовать протокол"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Интервал между попытками подключения"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Таймаут соединения"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Максимальное количество попыток подключения"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Попытаться определить настройки прокси автоматически"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Подключиться к удаленному хосту"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Постоянно пытаться заново подключиться при ошибке HTTP прокси"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Таймаут прокси в секундах"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Установить расширенные настройки HTTP прокси"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Соединяться используя Socks5 прокси"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Постоянно пытаться заново подключиться при ошибке Socks прокси"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Пытаться заново подключиться при ошибке определения имени хоста"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Позволить удаленному хосту изменять IP адрес или порт"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Выполнить shell команду при изменении IP адреса удаленного хоста"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Номер локального и удаленного TCP/UDP порта"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Номер локального TCP/UDP порта (1194 по умолчанию)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Номер удаленного TCP/UDP порта (1194 по умолчанию)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Связать локальный адрес и порт"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Не связывать локальный адрес и порт"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "устройство tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Тип используемого устройства"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Использовать файл устройства tun/tap"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Установить канальный адрес tap устройства"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr "'net30', 'p2p', или 'subnet'"
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Включить поддержку IPv6 для устройства tun"
+msgid "Accept options pushed from server"
+msgstr "Принимать опции отправленные с сервера"
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Использовать IP адрес"
+msgid "Add"
+msgstr ""
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Не выполнять ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Не извещать об ошибках ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
msgid "Add route after establishing connection"
msgstr "Добавить маршрут после установки соединения"
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Установить шлюз по умолчанию для маршрутов"
+msgid "Additional authentication over TLS"
+msgstr "Дополнительная аутентификация через TLS"
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Установить метрику по умолчанию для маршрутов"
+msgid "Allow client-to-client traffic"
+msgstr "Разрешить общение клиентов друг с другом"
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "Вызвать задержку на n секунд после установки соединения "
+msgid "Allow multiple clients with same certificate"
+msgstr "Разрешить несколько клиентов с одним сертификатом"
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Выполнить shell команду после добавления маршрутов"
+msgid "Allow only one session"
+msgstr "Разрешить только одну сессию"
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Не добавлять маршруты автоматически"
+msgid "Allow remote to change its IP or port"
+msgstr "Позволить удаленному хосту изменять IP адрес или порт"
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Не получать настройки от сервера"
+msgid "Allowed maximum of connected clients"
+msgstr "Разрешенное максимальное количество подключенных клиентов"
+
+msgid "Allowed maximum of internal"
+msgstr "Разрешенное максимальное количество внутренних"
+
+msgid "Allowed maximum of new connections"
+msgstr "Разрешенное максимальное количество новых соединений"
+
+msgid "Append log to file"
+msgstr "Дописать лог в файл"
+
+msgid "Authenticate using username/password"
+msgstr "Аутентификация с использованием имени пользователя и пароля"
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
msgid "Automatically redirect default route"
msgstr "Автоматически перенаправлять маршруты по умолчанию"
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Передать переменные окружения скрипту"
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr "Список настроенных процессов OpenVPN и их текущее состояние"
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Шейпинг пропускной способности пира"
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Установить таймауты в режиме сервера"
+msgid "Certificate authority"
+msgstr "Центр сертификации"
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "таймаут простоя tun/tap"
+msgid "Change process priority"
+msgstr "Изменить приоритет процесса"
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "Таймаут удаленного пинга"
+msgid "Change to directory before initialization"
+msgstr "Перейти в указанную директорию перед инициализацией"
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Начать заново после пинг таймаута"
+msgid "Check peer certificate against a CRL"
+msgstr "Проверить сертификат пира в CRL"
+
+msgid "Chroot to directory after initialization"
+msgstr "Выполнить chroot на указанную директорию после инициализации"
+
+msgid "Client is disabled"
+msgstr "Клиент выключен"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "Настроить режим клиента"
+
+msgid "Configure server bridge"
+msgstr "Настроить мост"
+
+msgid "Configure server mode"
+msgstr "Настроить режим сервера"
+
+msgid "Connect through Socks5 proxy"
+msgstr "Соединяться используя Socks5 прокси"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Интервал между попытками подключения"
+
+msgid "Daemonize after initialization"
+msgstr "Перейти в режим демона после инициализации"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+"Использовать задержку перед открытием устройства tun и выполнением скрипта"
+
+msgid "Diffie Hellman parameters"
+msgstr "Параметры алгоритма Диффи - Хеллмана"
+
+msgid "Directory for custom client config files"
+msgstr "Директория пользовательских файлов клиента"
+
+msgid "Disable Paging"
+msgstr "Выключить пейджинг"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Выключить вектор инициализации шифра"
+
+msgid "Disable options consistency check"
+msgstr "Выключить проверку целостности опций"
+
+msgid "Disable replay protection"
+msgstr "Отключить проверку повторной игры"
+
+msgid "Do not bind to local address and port"
+msgstr "Не связывать локальный адрес и порт"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Не выполнять ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Не добавлять маршруты автоматически"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Не кешировать --askpass или --auth-user-pass пароли"
+
+msgid "Don't inherit global push options"
+msgstr "Не наследовать глобальные общие посылки"
+
+msgid "Don't log timestamps"
+msgstr "Не записывать timestamp в лог"
+
+msgid "Don't re-read key on restart"
+msgstr "Не считывать заново ключ при перезагрузке"
+
+msgid "Don't require client certificate"
+msgstr "Не требовать сертификат у клиента"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Не использовать адаптивное сжатие LZO"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Не извещать об ошибках ifconfig"
+
+msgid "Echo parameters to log"
+msgstr "Выводить параметры в лог"
+
+msgid "Empirically measure MTU"
+msgstr "Эмпирически измерять MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Включить поддержку аппаратного шифрования OpenSSL"
+
+msgid "Enable Path MTU discovery"
+msgstr "Включить обнаружение пути MTU"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Включить шифрование с постоянным ключом (не TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Включить TLS в режиме клиента"
+
+msgid "Enable TLS and assume server role"
+msgstr "Включить TLS в режиме сервера"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Включить внутреннюю фрагментацию дейтаграмм"
+
+msgid "Enable management interface on IP port"
+msgstr "Включить интерфейс управления на IP порту"
+
+msgid "Enabled"
+msgstr "Включено"
+
+msgid "Encryption cipher for packets"
+msgstr "Шифрование для пакетов"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Выполнить shell команду после добавления маршрутов"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Выполнить shell команду при изменении IP адреса удаленного хоста"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Выйти при ошибке установления TLS"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr "HMAC аутентификация для пактов"
+
+msgid "Handling of authentication failures"
+msgstr "Обработка ошибок аутентификации"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Пытаться заново подключиться при ошибке определения имени хоста"
+
+msgid "Instance \"%s\""
+msgstr "Процесс \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Не изменять локальный IP адрес при перезагрузке"
+
+msgid "Keep remote IP address on restart"
+msgstr "Не изменять удаленный IP адрес при перезагрузке"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Не закрывать устройство tun/tap при перезагрузке"
+
+msgid "Key transition window"
+msgstr "Окно передачи ключей"
+
+msgid "Limit repeated log messages"
+msgstr "Ограничить повторяющиеся сообщения"
+
+msgid "Local certificate"
+msgstr "Локальный сертификат"
+
+msgid "Local host name or ip address"
+msgstr "Имя локального хоста или IP адрес"
+
+msgid "Local private key"
+msgstr "Локальный секретный ключ"
+
+msgid "Major mode"
+msgstr "Основной режим"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Включить поддержку IPv6 для устройства tun"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Максимальное количество исходящих TCP пакетов в очереди"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Количество выделенных широковещательных буферов"
+
+msgid "Number of lines for log file history"
+msgstr "Количество строк в файле истории"
+
+msgid "Only accept connections from given X509 name"
+msgstr "Принимать соединения только от данного имени X509"
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
msgid "Only process ping timeouts if routes exist"
msgstr ""
"Обрабатывать пинг таймаут только в случае, когда существует необходимый "
"маршрут"
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Запускать пинг каждые n секунд используя порт TCP/UDP"
+msgid "OpenVPN"
+msgstr "OpenVPN"
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Настроить UDP сервер с множественной адресацией"
+msgid "OpenVPN instances"
+msgstr "OpenVPN процессы"
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
msgid "Optimize TUN/TAP/UDP writes"
msgstr "Оптимизировать запись TUN/TAP/UDP"
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Обрабатывать сигнал SIGUSR1"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Не закрывать устройство tun/tap при перезагрузке"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Не изменять удаленный IP адрес при перезагрузке"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Не изменять локальный IP адрес при перезагрузке"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Не считывать заново ключ при перезагрузке"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "TOS passthrough (только для IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Установить MTU для tun/tap устройства"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Установить накладные расходы tun/tap устройства"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Установить TCP/UDP MTU"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Включить обнаружение пути MTU"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Эмпирически измерять MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Включить внутреннюю фрагментацию дейтаграмм"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Установить верхнюю границу для TCP MSS"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Установить размер буфера передачи TCP/UDP"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Установить размер буфера приема TCP/UDP"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Установить размер TX очереди tun/tap"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Выключить пейджинг"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Выполнить shell команду после открытия устройства tun"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-"Использовать задержку перед открытием устройства tun и выполнением скрипта"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Выполнить shell команду после закрытия устройства tun"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Установить UID пользователю"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Установить GID группе"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Выполнить chroot на указанную директорию после инициализации"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Перейти в указанную директорию перед инициализацией"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Перейти в режим демона после инициализации"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
msgid "Output to syslog and do not daemonize"
msgstr "Выводить сообщения в системный журнал и не переходить в режим демона"
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Запустить как inetd или xinetd сервер"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Записать лог в файл"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Дописать лог в файл"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Не записывать timestamp в лог"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Записать ID процесса в файл"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Изменить приоритет процесса"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Выводить параметры в лог"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Уровень вывода"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Ограничить повторяющиеся сообщения"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Записывать статус в файл каждые n секунд"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Версия формата статусного файла"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Выключить проверку целостности опций"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Особый режим стресс тестирования"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Использовать быстрое сжатие LZO"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Не использовать адаптивное сжатие LZO"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Включить интерфейс управления на IP порту"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "Интерфейс управления будет подключен как TCP клиент"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Запросить секретный ключ через канал управления"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Запустить OpenVPN в спящем режиме"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Послать сигнал SIGUSR1 при отключении интерфейса управления"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Забыть пароли при отключении интерфейса управления"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Количество строк в файле истории"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Загрузить подключаемый модуль"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Настроить режим сервера"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Настроить мост"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Послать опции пиру"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "Не наследовать глобальные общие посылки"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
+msgid "Overview"
msgstr ""
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Использовать адреса вместо подсетей /30"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Послать опцию ifconfig удаленной стороне"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Перенаправить подсеть клиенту"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "Клиент выключен"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "Не требовать сертификат у клиента"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Использовать имя пользователя как общее имя"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Скрипт для проверки интерактивной аутентификации"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Разрешить общение клиентов друг с другом"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Разрешить несколько клиентов с одним сертификатом"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Выполнить скрипт при подключении клиента"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Выполнить скрипт при отключении клиента"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Директория пользовательских файлов клиента"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "Установить размер реальной и виртуальной хеш таблицы"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Количество выделенных широковещательных буферов"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Максимальное количество исходящих TCP пакетов в очереди"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Скрипт для проверки виртуальных адресов клиента"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Разрешенное максимальное количество новых соединений"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Разрешенное максимальное количество подключенных клиентов"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Разрешенное максимальное количество внутренних"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Пропускать входящие HTTPS сессии через прокси"
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Настроить режим клиента"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Аутентификация с использованием имени пользователя и пароля"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Принимать опции отправленные с сервера"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Обработка ошибок аутентификации"
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Послать уведомление пиру при разъединении"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Включить шифрование с постоянным ключом (не TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "HMAC аутентификация для пактов"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Шифрование для пакетов"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Размер ключа шифрования"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Включить поддержку аппаратного шифрования OpenSSL"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Отключить проверку повторной игры"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Заглушить вывод предупреждений повторной игры"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Выключить вектор инициализации шифра"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Запустить проверку возможностей шифрования"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Включить TLS в режиме сервера"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Включить TLS в режиме клиента"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr "Центр сертификации"
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Директория с доверенными сертификатами (CA и CRL)"
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Параметры алгоритма Диффи - Хеллмана"
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Локальный сертификат"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Локальный секретный ключ"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
msgid "PKCS#12 file containing keys"
msgstr "Файл с PKCS#12 ключами"
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "TLS шифр"
+msgid "Pass environment variables to script"
+msgstr "Передать переменные окружения скрипту"
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
+msgid "Persist replay-protection state"
msgstr ""
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Запускать пинг каждые n секунд используя порт TCP/UDP"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Порт"
+
+msgid "Protocol"
+msgstr "Протокол"
+
+msgid "Proxy timeout in seconds"
+msgstr "Таймаут прокси в секундах"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Послать опцию ifconfig удаленной стороне"
+
+msgid "Push options to peer"
+msgstr "Послать опции пиру"
+
+msgid "Query management channel for private key"
+msgstr "Запросить секретный ключ через канал управления"
+
+msgid "Randomly choose remote server"
+msgstr "Случайно выбирать удаленный сервер"
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr "Обрабатывать сигнал SIGUSR1"
+
+msgid "Remote host name or ip address"
+msgstr "Имя удаленного хоста или IP адрес"
+
+msgid "Remote ping timeout"
+msgstr "Таймаут удаленного пинга"
+
msgid "Renegotiate data chan. key after bytes"
msgstr ""
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
msgid "Renegotiate data chan. key after packets"
msgstr ""
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
msgid "Renegotiate data chan. key after seconds"
msgstr ""
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Временное окно для обмена ключами"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Окно передачи ключей"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Разрешить только одну сессию"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Выйти при ошибке установления TLS"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Дополнительная аутентификация через TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Replay protection sliding window size"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Не кешировать --askpass или --auth-user-pass пароли"
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
-msgid "Check peer certificate against a CRL"
-msgstr "Проверить сертификат пира в CRL"
-
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Shell команда для проверки имени X509"
-
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
-msgid "Only accept connections from given X509 name"
-msgstr "Принимать соединения только от данного имени X509"
-
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
msgid "Require explicit designation on certificate"
msgstr "Требовать явного указания в сертификате"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "Требовать явного использования ключа в сертификате"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "Требовать явного использования расширенного ключа в сертификате"
+msgid "Restart after remote ping timeout"
+msgstr "Начать заново после пинг таймаута"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
msgstr ""
-"Требовать явного использования простого и расширенного ключа в сертификате"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Постоянно пытаться заново подключиться при ошибке HTTP прокси"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Постоянно пытаться заново подключиться при ошибке Socks прокси"
+
+msgid "Route subnet to client"
+msgstr "Перенаправить подсеть клиенту"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Запустить как inetd или xinetd сервер"
+
+msgid "Run script cmd on client connection"
+msgstr "Выполнить скрипт при подключении клиента"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Выполнить скрипт при отключении клиента"
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr "Послать уведомление пиру при разъединении"
+
+msgid "Set GID to group"
+msgstr "Установить GID группе"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Установить TCP/UDP MTU"
+
+msgid "Set UID to user"
+msgstr "Установить UID пользователю"
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr "Установить расширенные настройки HTTP прокси"
+
+msgid "Set output verbosity"
+msgstr "Уровень вывода"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "Установить размер реальной и виртуальной хеш таблицы"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Установить размер буфера приема TCP/UDP"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Установить размер буфера передачи TCP/UDP"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Установить размер TX очереди tun/tap"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "Установить MTU для tun/tap устройства"
+
+msgid "Set tun/tap device overhead"
+msgstr "Установить накладные расходы tun/tap устройства"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Установить верхнюю границу для TCP MSS"
+
+msgid "Shaping for peer bandwidth"
+msgstr "Шейпинг пропускной способности пира"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Выполнить shell команду после открытия устройства tun"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Выполнить shell команду после закрытия устройства tun"
+
+msgid "Shell command to verify X509 name"
+msgstr "Shell команда для проверки имени X509"
+
+msgid "Silence the output of replay warnings"
+msgstr "Заглушить вывод предупреждений повторной игры"
+
+msgid "Size of cipher key"
+msgstr "Размер ключа шифрования"
+
+msgid "Specify a default gateway for routes"
+msgstr "Установить шлюз по умолчанию для маршрутов"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Запустить OpenVPN в спящем режиме"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Запущено"
+
+msgid "Status file format version"
+msgstr "Версия формата статусного файла"
+
+msgid "Switch to advanced configuration »"
+msgstr "Перейти к расширенным настройкам »"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Номер локального и удаленного TCP/UDP порта"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Номер локального TCP/UDP порта (1194 по умолчанию)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Номер удаленного TCP/UDP порта (1194 по умолчанию)"
+
+msgid "TLS cipher"
+msgstr "TLS шифр"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "TOS passthrough (только для IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr "Временное окно для обмена ключами"
+
+msgid "Type of used device"
+msgstr "Тип используемого устройства"
+
+msgid "Use fast LZO compression"
+msgstr "Использовать быстрое сжатие LZO"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Использовать адреса вместо подсетей /30"
+
+msgid "Use protocol"
+msgstr "Использовать протокол"
+
+msgid "Use tun/tap device node"
+msgstr "Использовать файл устройства tun/tap"
+
+msgid "Use username as common name"
+msgstr "Использовать имя пользователя как общее имя"
+
+msgid "Write log to file"
+msgstr "Записать лог в файл"
+
+msgid "Write process ID to file"
+msgstr "Записать ID процесса в файл"
+
+msgid "Write status to file every n seconds"
+msgstr "Записывать статус в файл каждые n секунд"
+
+msgid "no"
+msgstr "нет"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "устройство tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr "таймаут простоя tun/tap"
+
+msgid "yes (%i)"
+msgstr "да (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "« Перейти к основным настройкам"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Конфигурация демона"
+
+#~ msgid "Networking options"
+#~ msgstr "Сетевые настройки"
+
+#~ msgid "VPN options"
+#~ msgstr "Настройки VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Настройки шифрования"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Получить конфигурацию из файла"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Таймаут соединения"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Максимальное количество попыток подключения"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Попытаться определить настройки прокси автоматически"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Подключиться к удаленному хосту"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Связать локальный адрес и порт"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Установить канальный адрес tap устройства"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Использовать IP адрес"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Установить метрику по умолчанию для маршрутов"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "Вызвать задержку на n секунд после установки соединения "
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Не получать настройки от сервера"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Установить таймауты в режиме сервера"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Настроить UDP сервер с множественной адресацией"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Особый режим стресс тестирования"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "Интерфейс управления будет подключен как TCP клиент"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Послать сигнал SIGUSR1 при отключении интерфейса управления"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Забыть пароли при отключении интерфейса управления"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Загрузить подключаемый модуль"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Скрипт для проверки интерактивной аутентификации"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Скрипт для проверки виртуальных адресов клиента"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Пропускать входящие HTTPS сессии через прокси"
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Запустить проверку возможностей шифрования"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Директория с доверенными сертификатами (CA и CRL)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "Требовать явного использования расширенного ключа в сертификате"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr ""
+#~ "Требовать явного использования простого и расширенного ключа в сертификате"
diff --git a/po/templates/openvpn.pot b/po/templates/openvpn.pot
index 964594d717..3d726acd03 100644
--- a/po/templates/openvpn.pot
+++ b/po/templates/openvpn.pot
@@ -1,954 +1,536 @@
-# openvpn.pot
-# generated from ./applications/luci-openvpn/luasrc/i18n/openvpn.en.lua
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr ""
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr ""
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr ""
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr ""
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr ""
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr ""
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr ""
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr ""
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr ""
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr ""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr ""
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr ""
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr ""
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr ""
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr ""
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr ""
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr ""
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr ""
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr ""
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr ""
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr ""
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr ""
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr ""
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr ""
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr ""
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr ""
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr ""
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr ""
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr ""
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr ""
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr ""
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr ""
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr ""
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr ""
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr ""
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr ""
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr ""
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr ""
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr ""
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr ""
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr ""
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr ""
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr ""
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr ""
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr ""
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr ""
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr ""
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr ""
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr ""
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr ""
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr ""
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr ""
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr ""
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr ""
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr ""
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr ""
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr ""
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr ""
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr ""
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr ""
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr ""
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr ""
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr ""
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr ""
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr ""
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr ""
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr ""
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr ""
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr ""
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr ""
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr ""
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr ""
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr ""
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr ""
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr ""
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr ""
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr ""
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr ""
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr ""
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr ""
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr ""
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr ""
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr ""
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr ""
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr ""
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr ""
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr ""
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr ""
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr ""
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr ""
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr ""
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr ""
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr ""
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr ""
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr ""
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr ""
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr ""
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr ""
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr ""
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr ""
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr ""
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr ""
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr ""
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr ""
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr ""
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr ""
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr ""
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr ""
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr ""
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr ""
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr ""
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr ""
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr ""
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr ""
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr ""
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr ""
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr ""
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr ""
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr ""
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr ""
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr ""
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr ""
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr ""
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr ""
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr ""
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr ""
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr ""
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr ""
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr ""
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr ""
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr ""
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr ""
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr ""
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr ""
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr ""
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr ""
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr ""
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr ""
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr ""
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr ""
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr ""
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr ""
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr ""
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr ""
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr ""
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr ""
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr ""
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr ""
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
+msgid "Add"
msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
+msgid "Add route after establishing connection"
msgstr ""
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr ""
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr ""
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr ""
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr ""
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr ""
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr ""
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr ""
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr ""
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr ""
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr ""
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr ""
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr ""
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr ""
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr ""
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr ""
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr ""
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr ""
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr ""
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr ""
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr ""
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr ""
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr ""
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr ""
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr ""
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr ""
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr ""
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr ""
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr ""
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr ""
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr ""
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
+msgid "Allow client-to-client traffic"
msgstr ""
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr ""
+
+msgid "Allow only one session"
+msgstr ""
+
+msgid "Allow remote to change its IP or port"
+msgstr ""
+
+msgid "Allowed maximum of connected clients"
+msgstr ""
+
+msgid "Allowed maximum of internal"
+msgstr ""
+
+msgid "Allowed maximum of new connections"
+msgstr ""
+
+msgid "Append log to file"
+msgstr ""
+
+msgid "Authenticate using username/password"
+msgstr ""
+
+msgid "Automatically redirect default route"
+msgstr ""
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr ""
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr ""
+
+msgid "Certificate authority"
+msgstr ""
+
+msgid "Change process priority"
+msgstr ""
+
+msgid "Change to directory before initialization"
msgstr ""
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr ""
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
+msgid "Chroot to directory after initialization"
+msgstr ""
+
+msgid "Client is disabled"
+msgstr ""
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr ""
+
+msgid "Configure server bridge"
+msgstr ""
+
+msgid "Configure server mode"
+msgstr ""
+
+msgid "Connect through Socks5 proxy"
+msgstr ""
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr ""
+
+msgid "Daemonize after initialization"
+msgstr ""
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr ""
+
+msgid "Diffie Hellman parameters"
+msgstr ""
+
+msgid "Directory for custom client config files"
+msgstr ""
+
+msgid "Disable Paging"
+msgstr ""
+
+msgid "Disable cipher initialisation vector"
+msgstr ""
+
+msgid "Disable options consistency check"
+msgstr ""
+
+msgid "Disable replay protection"
+msgstr ""
+
+msgid "Do not bind to local address and port"
+msgstr ""
+
+msgid "Don't actually execute ifconfig"
+msgstr ""
+
+msgid "Don't add routes automatically"
+msgstr ""
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr ""
+
+msgid "Don't inherit global push options"
+msgstr ""
+
+msgid "Don't log timestamps"
+msgstr ""
+
+msgid "Don't re-read key on restart"
+msgstr ""
+
+msgid "Don't require client certificate"
+msgstr ""
+
+msgid "Don't use adaptive lzo compression"
+msgstr ""
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr ""
+
+msgid "Echo parameters to log"
+msgstr ""
+
+msgid "Empirically measure MTU"
+msgstr ""
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr ""
+
+msgid "Enable Path MTU discovery"
+msgstr ""
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr ""
+
+msgid "Enable TLS and assume client role"
+msgstr ""
+
+msgid "Enable TLS and assume server role"
+msgstr ""
+
+msgid "Enable internal datagram fragmentation"
+msgstr ""
+
+msgid "Enable management interface on IP port"
+msgstr ""
+
+msgid "Enabled"
+msgstr ""
+
+msgid "Encryption cipher for packets"
+msgstr ""
+
+msgid "Execute shell cmd after routes are added"
+msgstr ""
+
+msgid "Execute shell command on remote ip change"
+msgstr ""
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr ""
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr ""
+
+msgid "HMAC authentication for packets"
+msgstr ""
+
+msgid "Handling of authentication failures"
+msgstr ""
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr ""
+
+msgid "Instance \"%s\""
+msgstr ""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr ""
+
+msgid "Keep remote IP address on restart"
+msgstr ""
+
+msgid "Keep tun/tap device open on restart"
+msgstr ""
+
+msgid "Key transition window"
+msgstr ""
+
+msgid "Limit repeated log messages"
+msgstr ""
+
+msgid "Local certificate"
+msgstr ""
+
+msgid "Local host name or ip address"
+msgstr ""
+
+msgid "Local private key"
+msgstr ""
+
+msgid "Major mode"
+msgstr ""
+
+msgid "Make tun device IPv6 capable"
+msgstr ""
+
+msgid "Maximum number of queued TCP output packets"
+msgstr ""
+
+msgid "Number of allocated broadcast buffers"
+msgstr ""
+
+msgid "Number of lines for log file history"
msgstr ""
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr ""
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr ""
+
+msgid "OpenVPN"
+msgstr ""
+
+msgid "OpenVPN instances"
+msgstr ""
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr ""
+
+msgid "Output to syslog and do not daemonize"
+msgstr ""
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr ""
+
+msgid "Pass environment variables to script"
+msgstr ""
+
+msgid "Persist replay-protection state"
+msgstr ""
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr ""
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr ""
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Protocol"
+msgstr ""
+
+msgid "Proxy timeout in seconds"
+msgstr ""
+
+msgid "Push an ifconfig option to remote"
+msgstr ""
+
+msgid "Push options to peer"
+msgstr ""
+
+msgid "Query management channel for private key"
+msgstr ""
+
+msgid "Randomly choose remote server"
+msgstr ""
+
+msgid "Refuse connection if no custom client config"
+msgstr ""
+
+msgid "Remap SIGUSR1 signals"
+msgstr ""
+
+msgid "Remote host name or ip address"
+msgstr ""
+
+msgid "Remote ping timeout"
+msgstr ""
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr ""
+
+msgid "Renegotiate data chan. key after packets"
+msgstr ""
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr ""
+
+msgid "Replay protection sliding window size"
+msgstr ""
+
msgid "Require explicit designation on certificate"
msgstr ""
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr ""
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
+msgid "Restart after remote ping timeout"
msgstr ""
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
+msgid "Retransmit timeout on TLS control channel"
+msgstr ""
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr ""
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr ""
+
+msgid "Route subnet to client"
+msgstr ""
+
+msgid "Run as an inetd or xinetd server"
+msgstr ""
+
+msgid "Run script cmd on client connection"
+msgstr ""
+
+msgid "Run script cmd on client disconnection"
+msgstr ""
+
+msgid "Run up/down scripts for all restarts"
+msgstr ""
+
+msgid "Send notification to peer on disconnect"
+msgstr ""
+
+msgid "Set GID to group"
+msgstr ""
+
+msgid "Set TCP/UDP MTU"
+msgstr ""
+
+msgid "Set UID to user"
+msgstr ""
+
+msgid "Set aside a pool of subnets"
+msgstr ""
+
+msgid "Set extended HTTP proxy options"
+msgstr ""
+
+msgid "Set output verbosity"
+msgstr ""
+
+msgid "Set size of real and virtual address hash tables"
+msgstr ""
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr ""
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr ""
+
+msgid "Set tun/tap TX queue length"
+msgstr ""
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr ""
+
+msgid "Set tun/tap device overhead"
+msgstr ""
+
+msgid "Set upper bound on TCP MSS"
+msgstr ""
+
+msgid "Shaping for peer bandwidth"
+msgstr ""
+
+msgid "Shell cmd to execute after tun device open"
+msgstr ""
+
+msgid "Shell cmd to run after tun device close"
+msgstr ""
+
+msgid "Shell command to verify X509 name"
+msgstr ""
+
+msgid "Silence the output of replay warnings"
+msgstr ""
+
+msgid "Size of cipher key"
+msgstr ""
+
+msgid "Specify a default gateway for routes"
+msgstr ""
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr ""
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr ""
+
+msgid "Status file format version"
+msgstr ""
+
+msgid "Switch to advanced configuration »"
+msgstr ""
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr ""
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr ""
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr ""
+
+msgid "TLS cipher"
+msgstr ""
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr ""
+
+msgid "Temporary directory for client-connect return file"
+msgstr ""
+
+msgid "Timeframe for key exchange"
+msgstr ""
+
+msgid "Type of used device"
+msgstr ""
+
+msgid "Use fast LZO compression"
+msgstr ""
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr ""
+
+msgid "Use protocol"
+msgstr ""
+
+msgid "Use tun/tap device node"
+msgstr ""
+
+msgid "Use username as common name"
+msgstr ""
+
+msgid "Write log to file"
+msgstr ""
+
+msgid "Write process ID to file"
+msgstr ""
+
+msgid "Write status to file every n seconds"
+msgstr ""
+
+msgid "no"
+msgstr ""
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr ""
+
+msgid "tun/tap inactivity timeout"
+msgstr ""
+
+msgid "yes (%i)"
+msgstr ""
+
+msgid "« Switch to basic configuration"
msgstr ""
diff --git a/po/vi/openvpn.po b/po/vi/openvpn.po
index 3afbd764e4..86d81deea5 100644
--- a/po/vi/openvpn.po
+++ b/po/vi/openvpn.po
@@ -8,960 +8,636 @@ msgstr ""
"PO-Revision-Date: 2009-08-16 12:27+0200\n"
"Last-Translator: Hong Phuc Dang \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
+msgid "'net30', 'p2p', or 'subnet'"
+msgstr "'net30', 'p2p', or 'subnet'"
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "Chuyển sang cấu hình căn bản"
+msgid "Accept options pushed from server"
+msgstr "Chấp nhận tùy chọn được đảy từ server"
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "Chuyển sang cấu hình cấp cao"
+msgid "Add"
+msgstr ""
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "Kích hoạt "
+msgid "Add route after establishing connection"
+msgstr "Thêm tuyến sau khi kết nối thành lập"
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "Bắt đầu"
+msgid "Additional authentication over TLS"
+msgstr "Xác thực bổ xung trên TLS"
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "không"
+msgid "Allow client-to-client traffic"
+msgstr "Cho phép lưu thông đối tượng - đến - đối tượng"
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "Có (%i)"
+msgid "Allow multiple clients with same certificate"
+msgstr "Cho phép nhiều đối tượng với cùng một chứng chỉ"
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "Cổng"
+msgid "Allow only one session"
+msgstr "Chỉ cho phép một session"
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "Protocol"
+msgid "Allow remote to change its IP or port"
+msgstr "Cho phép đối tượng ngoài vùng thay đổi IP hoặc cổng"
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "Instance \"%s\""
+msgid "Allowed maximum of connected clients"
+msgstr "Cho phép tối đa đối tượng kết nối mới là"
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN instances"
+msgid "Allowed maximum of internal"
+msgstr "Internal tối đa được cho phép"
+
+msgid "Allowed maximum of new connections"
+msgstr "Cho phép tối đa kết nối mới là"
+
+msgid "Append log to file"
+msgstr "Nối thêm log lên tập tin"
+
+msgid "Authenticate using username/password"
+msgstr "Xác thực username/password đang sử dụng"
+
+msgid "Automatically redirect default route"
+msgstr "Tự động chuyển hướng tuyến mặc định"
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
msgid "Below is a list of configured OpenVPN instances and their current state"
msgstr ""
"Dưới đây là một list của OpenVPN instances đã được cấu hình và tình trạng "
"hiện tại"
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "Cấu hình Daemon"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "Tùy chọn mạng "
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "Tùy chọn VPN"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "Các cài đặt cryptography"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "Đọc tùy chọn cấu hình từ tập tin"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "Tên host địa phương và địa chỉ IP"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "Tên host ngoài vùng và địa chỉ IP"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "Ngẫu nhiên chọn server ngoài vùng"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "Chế độ chính"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "Dùng protocol"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "Khoảng thử kết nối"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "Ngừng kết nối"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "Số lần thử kết nối tối đa"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "Thử cảm giác các cài đặt proxy tự động "
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "Kết nối với host ngoài vùng"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "Thử lại trên HTTP proxy lỗi"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "Proxy timeout in seconds"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "Thiết lập các tùy chọn mở rộng HTTP proxy"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "Kết nối qua Socks5 proxy"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "Thử lại trên Socks proxy lỗi"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "Nếu hostname resolve thất bại, thử lại"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "Cho phép đối tượng ngoài vùng thay đổi IP hoặc cổng"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "Thực hiện lệnh shell trên ip thay đổi từ xa"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "Cổng TCP/UDP # cho cả địa phương và ngoài vùng"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "Cổng TCP/UDP # cho địa phương (default=1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "Cổng TCP/UDP # cho ngoài vùng (default=1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "Kết nối địa chỉ địa phương và cổng"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "Đừng đóng kết địa chỉ địa phương và cổng"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "Công cụ tun/tap"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "Loại công cụ sử dụng"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "Dùng chế độ công cụ tun/tap"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "Đặt địa chỉ link layer của công cụ tap"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
-msgid "'net30', 'p2p', or 'subnet'"
-msgstr "'net30', 'p2p', or 'subnet'"
-
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "Làm cho tun công cụ IPv6 có khả năng"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "Định cấu hình công cụ để dùng địa chỉ IP"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "Đừng thực sự thực hiện ifconfig"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "Đừng cảnh báo về sự không nhất quán của ifconfig"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "Thêm tuyến sau khi kết nối thành lập"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "Chỉ định một cổng mặc định cho tuyến"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "Chỉ định metric mặc định cho tuyến"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr ""
-"Trì hoãn n giây sau khi kết nối \n"
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "Thực hiện shell cmd sau khi tuyến đã thêm vào"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "Đừng tự động thêm vào đường dẫn"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "Đừng kéo lựa chọn từ server"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "Tự động chuyển hướng tuyến mặc định"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "Bỏ qua yếu tố môi trường tới script"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "Shaping cho peer bandwidth"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "Đặt timeouts trong chế độ server"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "tun/tap timeout không có hành động"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "PING timeout từ xa"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "Khởi động lại sau khi remote ping timeout"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "Chỉ xử lý ping timouts nếu tuyến tồn tại"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "Ping remote mỗi n giây trên cổng TCP/UDP"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "Định cấu hình một multi-homed UDP server"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "Tối ưu hóa TUN/TAP/UDP writes"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "Remap tín hiệu SIGUSR1"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "Giữ công cụ tun/tap mở khi khởi động lại "
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "Giữ remote địa chỉ IP ở chế độ khởi động"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "Giữ địa chỉ IP ở chế độ khởi động"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "Đừng đọc lại key ở chế độ khởi động "
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "TOS passthrough (chỉ áp dụng cho IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "Đặt công cụ tun/tap MTU"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "Đặt thiết bị tun/tap overhead"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "Cài đặt TCP/UDP MTU"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "Kích hoạt khám phá đường dẫn MTU"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "Đo MTU"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "Kích hoạt internal datagram fragmentation"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "Đặt upper bound trên TCP MSS"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "Đặt TCP/UDP gửi dung lượng buffer"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "Đặt TCP/UDP nhận dung lượng buffer"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "Đặt tun/tap độ dài queue"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "Vô hiệu hóa Paging"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "Shell cmd để thực thi sau khi thiết bị tun mở"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "Trì hoãn tun/tap mở và up script execution"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "Shell cmd để chạy sau khi thiết bị tun đóng"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
msgid "Call down cmd/script before TUN/TAP close"
msgstr "Call down cmd/script trước khi TUN/TAP đóng"
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "Chạy up/down scripts cho tất cả khởi động"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "Cài đặt UID tới người dùng"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "Cài đặt GID tới nhóm"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "Chroot vào thư mục sau khi khởi tạo"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "Chuyển qua thư mục trước khi khởi tạo"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "Daemonize sau khi khởi tạo"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "Output tới syslog và đừng daemonize"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "Chạy như inetd hoặc xinetd server"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "Viết log lên tập tin"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "Nối thêm log lên tập tin"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "Đừng log timestamps"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "Viết xử lý ID lên tập tin"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "Thay đổi quy trình ưu tiên"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "Báo tham số lên log"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "Đặt output verbosity"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "Giới hạn lập log tin nhắn"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "Viết tình trạng tới tập tin mỗi n giây"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "Tình trạng tập tin phiên bản format"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "Vô hiệu hóa tùy chọn kiểm tra nhất quán"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "Chế độ kiểm tra stress đặc biệt "
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "Dùng LZO nén nhanh"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "Đừng dùng bộ nén lzo thích ứng"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "Kích hoạt giao diện điều hành trên IP cổng"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "Giao diện điều hành sẽ kết nối như một đối tượng TCP"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "Tra vấn kênh điều hành cho phím bảo mật "
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "Bắt đầu OpenVPN trong một hibernating state"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "Vấn đề SIGUSR1 trên điều hành dừng kết nối"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "Quên mật mã trên điều hành dừng kết nối"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "Số dòng cho tập tin log history"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "Tải plug-in module"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "Định cấu hình chế độ server"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "Định cấu hình cầu nối server"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "Đẩy lựa chọn cho đối tác"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "Đừng thừa hưởng tùy chọn đẩy toàn cầu"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "Để sang một bên một pool của subnets"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "Nên dùng địa chỉ cá nhân hơn là /30 subnets"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "Persist/unpersist ifconfig-pool"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "Đảy một tùy chọn ifconfig tới remote"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "Tuyến subnet tới khách hàng"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "Đối tượng bị vô hiệu hóa"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "Đừng yêu câu chứng chỉ đối tượng"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "Dùng tên đăng nhập như tên thông thường"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "Script để làm rõ tương tác xác thực"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "Cho phép lưu thông đối tượng - đến - đối tượng"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "Cho phép nhiều đối tượng với cùng một chứng chỉ"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "Chạy script cmd trên đối tượng kết nối"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "Chạy script cmd trên đối tượng không kết nối"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "Dạnh mục cho các tập tin config đối tương tùy chỉnh"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr "Từ chối kết nối nêu không có config đối tượng tùy chỉnh"
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "Danh mục tạm thời cho tập tin client-connect return"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "Đặt dung lượng của bảng address hash thực và ảo"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "Số lượng phân bổ phát sóng buffers"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "Số lượng tối đa của queued TCP output packets"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "Script để hợp thức hóa địa chỉ ảo của đối tượng"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "Cho phép tối đa kết nối mới là"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "Cho phép tối đa đối tượng kết nối mới là"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "Internal tối đa được cho phép"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "Những phiên proxy incoming HTTPS "
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "Định cấu hình chế độ đối tượng "
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "Xác thực username/password đang sử dụng"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
-msgid "Accept options pushed from server"
-msgstr "Chấp nhận tùy chọn được đảy từ server"
-
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "Xử lý những sai soát khi xác thực "
-
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "Gửi thông báo cho bạn bè về ngắt kết nối"
-
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "Kích hoạt chế độ mã hóa khóa tĩnh (non-TLS)"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "Sự xác thực HMAC cho gói"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "Encryption cipher cho các gói"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "Dung lượng của cipher key"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "Kích hoạt OpenSSL hardware crypto engines"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "Vô hiệu hóa replay protection"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "Silence the output của các cảnh báo reply"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "Replay chế độ bảo vệ kích thước window trượt"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "Vô hiệu hóa cipher initialisation vector"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "Tiếp tục tình trạng replay-protection"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "Chạy một chế độ tự kiểm tra các tính năng của crypto"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "Kích hoạt TLS và giả định vải trò của server"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "Kích hoạt TLS và giả định vải trò của client"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "Data channel key trao đổi phương pháp"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
msgid "Certificate authority"
msgstr "Giấy chứng nhận ủy quyền"
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "Danh mục các chứng chỉ tin cậy (CAS và CRLs)"
+msgid "Change process priority"
+msgstr "Thay đổi quy trình ưu tiên"
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Tham số Diffie Hellman "
+msgid "Change to directory before initialization"
+msgstr "Chuyển qua thư mục trước khi khởi tạo"
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "Chứng chỉ địa phương"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "Phím bảo mật địa phương"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "PKCS # 12 tập tin có chứa key"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "TLS cipher"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "Retransmit timeout trên kênh kiểm soát TLS"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "Thương lượng lại data chan. key sau bytes"
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "Thương lượng lại data chan. key sau packets"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "Thương lượng lại data chan. key sau seconds"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "Timeframe cho trao đổi key"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "Key transition window"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "Chỉ cho phép một session"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "Exit trên TLS khi thương lượng thất bại"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
-msgid "Additional authentication over TLS"
-msgstr "Xác thực bổ xung trên TLS"
-
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "Lấy mật mã PEM từ điều khiển tty trước khi chúng ta daemonize"
-
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "Don't cache --askpass or --auth-user-pass passwords"
-
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr "Kiểm tra chứng chỉ đối tác với một CRL"
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "Shell command để hợp thức hóa tên X509 "
+msgid "Chroot to directory after initialization"
+msgstr "Chroot vào thư mục sau khi khởi tạo"
+
+msgid "Client is disabled"
+msgstr "Đối tượng bị vô hiệu hóa"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "Định cấu hình chế độ đối tượng "
+
+msgid "Configure server bridge"
+msgstr "Định cấu hình cầu nối server"
+
+msgid "Configure server mode"
+msgstr "Định cấu hình chế độ server"
+
+msgid "Connect through Socks5 proxy"
+msgstr "Kết nối qua Socks5 proxy"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "Khoảng thử kết nối"
+
+msgid "Daemonize after initialization"
+msgstr "Daemonize sau khi khởi tạo"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "Trì hoãn tun/tap mở và up script execution"
+
+msgid "Diffie Hellman parameters"
+msgstr "Tham số Diffie Hellman "
+
+msgid "Directory for custom client config files"
+msgstr "Dạnh mục cho các tập tin config đối tương tùy chỉnh"
+
+msgid "Disable Paging"
+msgstr "Vô hiệu hóa Paging"
+
+msgid "Disable cipher initialisation vector"
+msgstr "Vô hiệu hóa cipher initialisation vector"
+
+msgid "Disable options consistency check"
+msgstr "Vô hiệu hóa tùy chọn kiểm tra nhất quán"
+
+msgid "Disable replay protection"
+msgstr "Vô hiệu hóa replay protection"
+
+msgid "Do not bind to local address and port"
+msgstr "Đừng đóng kết địa chỉ địa phương và cổng"
+
+msgid "Don't actually execute ifconfig"
+msgstr "Đừng thực sự thực hiện ifconfig"
+
+msgid "Don't add routes automatically"
+msgstr "Đừng tự động thêm vào đường dẫn"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "Don't cache --askpass or --auth-user-pass passwords"
+
+msgid "Don't inherit global push options"
+msgstr "Đừng thừa hưởng tùy chọn đẩy toàn cầu"
+
+msgid "Don't log timestamps"
+msgstr "Đừng log timestamps"
+
+msgid "Don't re-read key on restart"
+msgstr "Đừng đọc lại key ở chế độ khởi động "
+
+msgid "Don't require client certificate"
+msgstr "Đừng yêu câu chứng chỉ đối tượng"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "Đừng dùng bộ nén lzo thích ứng"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "Đừng cảnh báo về sự không nhất quán của ifconfig"
+
+msgid "Echo parameters to log"
+msgstr "Báo tham số lên log"
+
+msgid "Empirically measure MTU"
+msgstr "Đo MTU"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "Kích hoạt OpenSSL hardware crypto engines"
+
+msgid "Enable Path MTU discovery"
+msgstr "Kích hoạt khám phá đường dẫn MTU"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "Kích hoạt chế độ mã hóa khóa tĩnh (non-TLS)"
+
+msgid "Enable TLS and assume client role"
+msgstr "Kích hoạt TLS và giả định vải trò của client"
+
+msgid "Enable TLS and assume server role"
+msgstr "Kích hoạt TLS và giả định vải trò của server"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "Kích hoạt internal datagram fragmentation"
+
+msgid "Enable management interface on IP port"
+msgstr "Kích hoạt giao diện điều hành trên IP cổng"
+
+msgid "Enabled"
+msgstr "Kích hoạt "
+
+msgid "Encryption cipher for packets"
+msgstr "Encryption cipher cho các gói"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "Thực hiện shell cmd sau khi tuyến đã thêm vào"
+
+msgid "Execute shell command on remote ip change"
+msgstr "Thực hiện lệnh shell trên ip thay đổi từ xa"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "Exit trên TLS khi thương lượng thất bại"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "Lấy mật mã PEM từ điều khiển tty trước khi chúng ta daemonize"
+
+msgid "HMAC authentication for packets"
+msgstr "Sự xác thực HMAC cho gói"
+
+msgid "Handling of authentication failures"
+msgstr "Xử lý những sai soát khi xác thực "
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "Nếu hostname resolve thất bại, thử lại"
+
+msgid "Instance \"%s\""
+msgstr "Instance \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "Giữ địa chỉ IP ở chế độ khởi động"
+
+msgid "Keep remote IP address on restart"
+msgstr "Giữ remote địa chỉ IP ở chế độ khởi động"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "Giữ công cụ tun/tap mở khi khởi động lại "
+
+msgid "Key transition window"
+msgstr "Key transition window"
+
+msgid "Limit repeated log messages"
+msgstr "Giới hạn lập log tin nhắn"
+
+msgid "Local certificate"
+msgstr "Chứng chỉ địa phương"
+
+msgid "Local host name or ip address"
+msgstr "Tên host địa phương và địa chỉ IP"
+
+msgid "Local private key"
+msgstr "Phím bảo mật địa phương"
+
+msgid "Major mode"
+msgstr "Chế độ chính"
+
+msgid "Make tun device IPv6 capable"
+msgstr "Làm cho tun công cụ IPv6 có khả năng"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "Số lượng tối đa của queued TCP output packets"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "Số lượng phân bổ phát sóng buffers"
+
+msgid "Number of lines for log file history"
+msgstr "Số dòng cho tập tin log history"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr "Chỉ chấp nhận kết nối từ những tên X509 cho sẵn"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr "Chỉ xử lý ping timouts nếu tuyến tồn tại"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "OpenVPN instances"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "Tối ưu hóa TUN/TAP/UDP writes"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "Output tới syslog và đừng daemonize"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "PKCS # 12 tập tin có chứa key"
+
+msgid "Pass environment variables to script"
+msgstr "Bỏ qua yếu tố môi trường tới script"
+
+msgid "Persist replay-protection state"
+msgstr "Tiếp tục tình trạng replay-protection"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "Persist/unpersist ifconfig-pool"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "Ping remote mỗi n giây trên cổng TCP/UDP"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "Cổng"
+
+msgid "Protocol"
+msgstr "Protocol"
+
+msgid "Proxy timeout in seconds"
+msgstr "Proxy timeout in seconds"
+
+msgid "Push an ifconfig option to remote"
+msgstr "Đảy một tùy chọn ifconfig tới remote"
+
+msgid "Push options to peer"
+msgstr "Đẩy lựa chọn cho đối tác"
+
+msgid "Query management channel for private key"
+msgstr "Tra vấn kênh điều hành cho phím bảo mật "
+
+msgid "Randomly choose remote server"
+msgstr "Ngẫu nhiên chọn server ngoài vùng"
+
+msgid "Refuse connection if no custom client config"
+msgstr "Từ chối kết nối nêu không có config đối tượng tùy chỉnh"
+
+msgid "Remap SIGUSR1 signals"
+msgstr "Remap tín hiệu SIGUSR1"
+
+msgid "Remote host name or ip address"
+msgstr "Tên host ngoài vùng và địa chỉ IP"
+
+msgid "Remote ping timeout"
+msgstr "PING timeout từ xa"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "Thương lượng lại data chan. key sau bytes"
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "Thương lượng lại data chan. key sau packets"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "Thương lượng lại data chan. key sau seconds"
+
+msgid "Replay protection sliding window size"
+msgstr "Replay chế độ bảo vệ kích thước window trượt"
+
msgid "Require explicit designation on certificate"
msgstr "Yêu cầu rõ ràng về giấy chứng nhận "
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "Yêu cầu key dùng rõ rãng trên chứng nhận"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "Yêu cầu gia hạn rõ ràng về cách sử dụng key trên giấy chứng nhận"
+msgid "Restart after remote ping timeout"
+msgstr "Khởi động lại sau khi remote ping timeout"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
-msgstr "Yêu cầu bình thường và mở rộng sử dụng key trên giấy chứng nhận"
+msgid "Retransmit timeout on TLS control channel"
+msgstr "Retransmit timeout trên kênh kiểm soát TLS"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "Thử lại trên HTTP proxy lỗi"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "Thử lại trên Socks proxy lỗi"
+
+msgid "Route subnet to client"
+msgstr "Tuyến subnet tới khách hàng"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "Chạy như inetd hoặc xinetd server"
+
+msgid "Run script cmd on client connection"
+msgstr "Chạy script cmd trên đối tượng kết nối"
+
+msgid "Run script cmd on client disconnection"
+msgstr "Chạy script cmd trên đối tượng không kết nối"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "Chạy up/down scripts cho tất cả khởi động"
+
+msgid "Send notification to peer on disconnect"
+msgstr "Gửi thông báo cho bạn bè về ngắt kết nối"
+
+msgid "Set GID to group"
+msgstr "Cài đặt GID tới nhóm"
+
+msgid "Set TCP/UDP MTU"
+msgstr "Cài đặt TCP/UDP MTU"
+
+msgid "Set UID to user"
+msgstr "Cài đặt UID tới người dùng"
+
+msgid "Set aside a pool of subnets"
+msgstr "Để sang một bên một pool của subnets"
+
+msgid "Set extended HTTP proxy options"
+msgstr "Thiết lập các tùy chọn mở rộng HTTP proxy"
+
+msgid "Set output verbosity"
+msgstr "Đặt output verbosity"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "Đặt dung lượng của bảng address hash thực và ảo"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "Đặt TCP/UDP nhận dung lượng buffer"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "Đặt TCP/UDP gửi dung lượng buffer"
+
+msgid "Set tun/tap TX queue length"
+msgstr "Đặt tun/tap độ dài queue"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "Đặt công cụ tun/tap MTU"
+
+msgid "Set tun/tap device overhead"
+msgstr "Đặt thiết bị tun/tap overhead"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "Đặt upper bound trên TCP MSS"
+
+msgid "Shaping for peer bandwidth"
+msgstr "Shaping cho peer bandwidth"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "Shell cmd để thực thi sau khi thiết bị tun mở"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "Shell cmd để chạy sau khi thiết bị tun đóng"
+
+msgid "Shell command to verify X509 name"
+msgstr "Shell command để hợp thức hóa tên X509 "
+
+msgid "Silence the output of replay warnings"
+msgstr "Silence the output của các cảnh báo reply"
+
+msgid "Size of cipher key"
+msgstr "Dung lượng của cipher key"
+
+msgid "Specify a default gateway for routes"
+msgstr "Chỉ định một cổng mặc định cho tuyến"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "Bắt đầu OpenVPN trong một hibernating state"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "Bắt đầu"
+
+msgid "Status file format version"
+msgstr "Tình trạng tập tin phiên bản format"
+
+msgid "Switch to advanced configuration »"
+msgstr "Chuyển sang cấu hình cấp cao"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "Cổng TCP/UDP # cho cả địa phương và ngoài vùng"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "Cổng TCP/UDP # cho địa phương (default=1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "Cổng TCP/UDP # cho ngoài vùng (default=1194)"
+
+msgid "TLS cipher"
+msgstr "TLS cipher"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "TOS passthrough (chỉ áp dụng cho IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "Danh mục tạm thời cho tập tin client-connect return"
+
+msgid "Timeframe for key exchange"
+msgstr "Timeframe cho trao đổi key"
+
+msgid "Type of used device"
+msgstr "Loại công cụ sử dụng"
+
+msgid "Use fast LZO compression"
+msgstr "Dùng LZO nén nhanh"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "Nên dùng địa chỉ cá nhân hơn là /30 subnets"
+
+msgid "Use protocol"
+msgstr "Dùng protocol"
+
+msgid "Use tun/tap device node"
+msgstr "Dùng chế độ công cụ tun/tap"
+
+msgid "Use username as common name"
+msgstr "Dùng tên đăng nhập như tên thông thường"
+
+msgid "Write log to file"
+msgstr "Viết log lên tập tin"
+
+msgid "Write process ID to file"
+msgstr "Viết xử lý ID lên tập tin"
+
+msgid "Write status to file every n seconds"
+msgstr "Viết tình trạng tới tập tin mỗi n giây"
+
+msgid "no"
+msgstr "không"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "Công cụ tun/tap"
+
+msgid "tun/tap inactivity timeout"
+msgstr "tun/tap timeout không có hành động"
+
+msgid "yes (%i)"
+msgstr "Có (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "Chuyển sang cấu hình căn bản"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "Cấu hình Daemon"
+
+#~ msgid "Networking options"
+#~ msgstr "Tùy chọn mạng "
+
+#~ msgid "VPN options"
+#~ msgstr "Tùy chọn VPN"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "Các cài đặt cryptography"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "Đọc tùy chọn cấu hình từ tập tin"
+
+#~ msgid "Connection timeout"
+#~ msgstr "Ngừng kết nối"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "Số lần thử kết nối tối đa"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "Thử cảm giác các cài đặt proxy tự động "
+
+#~ msgid "Connect to remote host"
+#~ msgstr "Kết nối với host ngoài vùng"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "Kết nối địa chỉ địa phương và cổng"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "Đặt địa chỉ link layer của công cụ tap"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "Định cấu hình công cụ để dùng địa chỉ IP"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "Chỉ định metric mặc định cho tuyến"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr ""
+#~ "Trì hoãn n giây sau khi kết nối "
+#~ "span>\n"
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "Đừng kéo lựa chọn từ server"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "Đặt timeouts trong chế độ server"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "Định cấu hình một multi-homed UDP server"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "Chế độ kiểm tra stress đặc biệt "
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "Giao diện điều hành sẽ kết nối như một đối tượng TCP"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "Vấn đề SIGUSR1 trên điều hành dừng kết nối"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "Quên mật mã trên điều hành dừng kết nối"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "Tải plug-in module"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "Script để làm rõ tương tác xác thực"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "Script để hợp thức hóa địa chỉ ảo của đối tượng"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "Những phiên proxy incoming HTTPS "
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "Chạy một chế độ tự kiểm tra các tính năng của crypto"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "Data channel key trao đổi phương pháp"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "Danh mục các chứng chỉ tin cậy (CAS và CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "Yêu cầu gia hạn rõ ràng về cách sử dụng key trên giấy chứng nhận"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr "Yêu cầu bình thường và mở rộng sử dụng key trên giấy chứng nhận"
diff --git a/po/zh_CN/openvpn.po b/po/zh_CN/openvpn.po
index 3a29a7ac75..05a10c1e3a 100644
--- a/po/zh_CN/openvpn.po
+++ b/po/zh_CN/openvpn.po
@@ -13,952 +13,626 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.4\n"
-#. OpenVPN
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:1
-msgid "OpenVPN"
-msgstr "OpenVPN"
-
-#. Switch to basic configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:3
-msgid "« Switch to basic configuration"
-msgstr "« 基本配置"
-
-#. Switch to advanced configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:4
-msgid "Switch to advanced configuration »"
-msgstr "高级配置 »"
-
-#. Enabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:6
-msgid "Enabled"
-msgstr "启用"
-
-#. Started
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:7
-msgid "Started"
-msgstr "已运行的"
-
-#. no
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:8
-msgid "no"
-msgstr "否"
-
-#. yes (%i)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:9
-msgid "yes (%i)"
-msgstr "是 (%i)"
-
-#. Port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:10
-msgid "Port"
-msgstr "端口"
-
-#. Protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:11
-msgid "Protocol"
-msgstr "协议"
-
-#. Instance \"%s\"
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:13
-msgid "Instance \"%s\""
-msgstr "实例 \"%s\""
-
-#. OpenVPN instances
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:15
-msgid "OpenVPN instances"
-msgstr "OpenVPN 实例"
-
-#. Below is a list of configured OpenVPN instances and their current state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:16
-msgid "Below is a list of configured OpenVPN instances and their current state"
-msgstr "Openvpn已配置实例及其当前状态列表"
-
-#. Daemon configuration
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:18
-msgid "Daemon configuration"
-msgstr "后台配置"
-
-#. Networking options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:19
-msgid "Networking options"
-msgstr "网络选项"
-
-#. VPN options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:20
-msgid "VPN options"
-msgstr "VPN 选项"
-
-#. Cryptography settings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:21
-msgid "Cryptography settings"
-msgstr "加密设置"
-
-#. Read configuration options from file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:23
-msgid "Read configuration options from file"
-msgstr "从配置文件读取配置选项"
-
-#. Local host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:24
-msgid "Local host name or ip address"
-msgstr "本地主机名或ip地址"
-
-#. Remote host name or ip address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:25
-msgid "Remote host name or ip address"
-msgstr "远程主机名或ip地址"
-
-#. Randomly choose remote server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:26
-msgid "Randomly choose remote server"
-msgstr "随机选择远程服务器"
-
-#. Major mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:27
-msgid "Major mode"
-msgstr "主要模式"
-
-#. Use protocol
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:28
-msgid "Use protocol"
-msgstr "采用协议"
-
-#. Connection retry interval
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:29
-msgid "Connection retry interval"
-msgstr "连接重试时间间隔"
-
-#. Connection timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:30
-msgid "Connection timeout"
-msgstr "连接超时"
-
-#. Maximum connection attempt retries
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:31
-msgid "Maximum connection attempt retries"
-msgstr "最大连接尝试次数"
-
-#. Try to sense proxy settings automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:32
-msgid "Try to sense proxy settings automatically"
-msgstr "尝试自动检测代理设置"
-
-#. Connect to remote host
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:33
-msgid "Connect to remote host"
-msgstr "连接到远程主机"
-
-#. Retry indefinitely on HTTP proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:34
-msgid "Retry indefinitely on HTTP proxy errors"
-msgstr "无限重试直至代理正确"
-
-#. Proxy timeout in seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:35
-msgid "Proxy timeout in seconds"
-msgstr "代理超时,单位秒"
-
-#. Set extended HTTP proxy options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:36
-msgid "Set extended HTTP proxy options"
-msgstr "设置HTTP扩展代理选项"
-
-#. Connect through Socks5 proxy
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:37
-msgid "Connect through Socks5 proxy"
-msgstr "通过Sock5代理连接"
-
-#. Retry indefinitely on Socks proxy errors
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:38
-msgid "Retry indefinitely on Socks proxy errors"
-msgstr "无限重试直至Socks代理正确"
-
-#. If hostname resolve fails, retry
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:39
-msgid "If hostname resolve fails, retry"
-msgstr "如果主机名解析错误,重试"
-
-#. Allow remote to change its IP or port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:40
-msgid "Allow remote to change its IP or port"
-msgstr "允许远程修改ip和端口"
-
-#. Execute shell command on remote ip change
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:41
-msgid "Execute shell command on remote ip change"
-msgstr "当远程ip改变时执行shell命令"
-
-#. TCP/UDP port # for both local and remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:42
-msgid "TCP/UDP port # for both local and remote"
-msgstr "TCP/UDP 端口 # 同时针对本地和远程"
-
-#. TCP/UDP port # for local (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:43
-msgid "TCP/UDP port # for local (default=1194)"
-msgstr "TCP/UDP 端口 # 本地 (默认 1194)"
-
-#. TCP/UDP port # for remote (default=1194)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:44
-msgid "TCP/UDP port # for remote (default=1194)"
-msgstr "TCP/UDP 端口 # 远程 (默认 1194)"
-
-#. Bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:45
-msgid "Bind to local address and port"
-msgstr "绑定本地地址和端口"
-
-#. Do not bind to local address and port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:46
-msgid "Do not bind to local address and port"
-msgstr "不绑定本地地址和端口"
-
-#. tun/tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:47
-msgid "tun/tap device"
-msgstr "tun/tap 设备"
-
-#. Type of used device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:48
-msgid "Type of used device"
-msgstr "使用设备类型"
-
-#. Use tun/tap device node
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:49
-msgid "Use tun/tap device node"
-msgstr "使用 tun/tap 设备节点"
-
-#. Set the link layer address of the tap device
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:50
-msgid "Set the link layer address of the tap device"
-msgstr "设置 tap 设备的数据链路层地址"
-
-#. 'net30', 'p2p', or 'subnet'
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:51
msgid "'net30', 'p2p', or 'subnet'"
msgstr "'net30', 'p2p', 或 '子网'"
-#. Make tun device IPv6 capable
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:52
-msgid "Make tun device IPv6 capable"
-msgstr "使 tun 设备兼容IPv6"
-
-#. Configure device to use IP address
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:53
-msgid "Configure device to use IP address"
-msgstr "配置设备使用ip地址"
-
-#. Don't actually execute ifconfig
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:54
-msgid "Don't actually execute ifconfig"
-msgstr "不实际执行ifconfig命令"
-
-#. Don't warn on ifconfig inconsistencies
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:55
-msgid "Don't warn on ifconfig inconsistencies"
-msgstr "ifconfig不一致时不警告"
-
-#. Add route after establishing connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:56
-msgid "Add route after establishing connection"
-msgstr "建立连接后添加路由"
-
-#. Specify a default gateway for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:57
-msgid "Specify a default gateway for routes"
-msgstr "指定路由默认网关"
-
-#. Specify a default metric for routes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:58
-msgid "Specify a default metric for routes"
-msgstr "指定路由默认权值"
-
-#. Delay n seconds after connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:59
-msgid "Delay n seconds after connection "
-msgstr "连接后延迟n秒 "
-
-#. Execute shell cmd after routes are added
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:60
-msgid "Execute shell cmd after routes are added"
-msgstr "添加路由后执行shell命令"
-
-#. Don't add routes automatically
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:61
-msgid "Don't add routes automatically"
-msgstr "不自动添加路由"
-
-#. Don't pull options from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:62
-msgid "Don't pull options from server"
-msgstr "不从服务器获取设置参数"
-
-#. Automatically redirect default route
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:63
-msgid "Automatically redirect default route"
-msgstr "自动重定向至默认路由"
-
-#. Pass environment variables to script
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:64
-msgid "Pass environment variables to script"
-msgstr "传递环境变量至脚本"
-
-#. Shaping for peer bandwidth
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:65
-msgid "Shaping for peer bandwidth"
-msgstr "改变结点带宽"
-
-#. Set timeouts in server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:66
-msgid "Set timeouts in server mode"
-msgstr "设置服务器模式下的超时"
-
-#. tun/tap inactivity timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:67
-msgid "tun/tap inactivity timeout"
-msgstr "tun/tap 休眠超时"
-
-#. Remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:68
-msgid "Remote ping timeout"
-msgstr "远程ping超时"
-
-#. Restart after remote ping timeout
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:69
-msgid "Restart after remote ping timeout"
-msgstr "远程ping超时后重启"
-
-#. Only process ping timeouts if routes exist
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:70
-msgid "Only process ping timeouts if routes exist"
-msgstr "当且仅当路由存在时处理ping超时"
-
-#. Ping remote every n seconds over TCP/UDP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:71
-msgid "Ping remote every n seconds over TCP/UDP port"
-msgstr "每n秒ping一次远程 TCP/UDP 端口"
-
-#. Configure a multi-homed UDP server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:72
-msgid "Configure a multi-homed UDP server"
-msgstr "配置多宿UDP服务器"
-
-#. Optimize TUN/TAP/UDP writes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:73
-msgid "Optimize TUN/TAP/UDP writes"
-msgstr "优化 TUN/TAP/UDP 写入"
-
-#. Remap SIGUSR1 signals
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:74
-msgid "Remap SIGUSR1 signals"
-msgstr "重映射SIGUSR1信号"
-
-#. Keep tun/tap device open on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:75
-msgid "Keep tun/tap device open on restart"
-msgstr "服务重启时自动打开 tun/tap 设备"
-
-#. Keep remote IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:76
-msgid "Keep remote IP address on restart"
-msgstr "服务重启时保持远程IP地址"
-
-#. Keep local IP address on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:77
-msgid "Keep local IP address on restart"
-msgstr "服务重启时保持本地IP地址"
-
-#. Don't re-read key on restart
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:78
-msgid "Don't re-read key on restart"
-msgstr "服务重启时不重读密钥值"
-
-#. TOS passthrough (applies to IPv4 only)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:79
-msgid "TOS passthrough (applies to IPv4 only)"
-msgstr "TOS 穿透 (仅限IPv4)"
-
-#. Set tun/tap device MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:80
-msgid "Set tun/tap device MTU"
-msgstr "设置tun/tap设备的MTU值"
-
-#. Set tun/tap device overhead
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:81
-msgid "Set tun/tap device overhead"
-msgstr "设置tun/tap设备的开销"
-
-#. Set TCP/UDP MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:82
-msgid "Set TCP/UDP MTU"
-msgstr "设置TCP/UDP的MTU值"
-
-#. Enable Path MTU discovery
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:83
-msgid "Enable Path MTU discovery"
-msgstr "启用路径MTU发现"
-
-#. Empirically measure MTU
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:84
-msgid "Empirically measure MTU"
-msgstr "以历史值估算MTU值"
-
-#. Enable internal datagram fragmentation
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:85
-msgid "Enable internal datagram fragmentation"
-msgstr "允许内部数据报分片"
-
-#. Set upper bound on TCP MSS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:86
-msgid "Set upper bound on TCP MSS"
-msgstr "设置TCP MSS的上限"
-
-#. Set the TCP/UDP send buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:87
-msgid "Set the TCP/UDP send buffer size"
-msgstr "设置TCP/UDP发送缓冲区大小"
-
-#. Set the TCP/UDP receive buffer size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:88
-msgid "Set the TCP/UDP receive buffer size"
-msgstr "设置TCP/UDP接收缓冲区大小"
-
-#. Set tun/tap TX queue length
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:89
-msgid "Set tun/tap TX queue length"
-msgstr "设置tun/tap发送队列长度"
-
-#. Disable Paging
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:90
-msgid "Disable Paging"
-msgstr "禁止分页"
-
-#. Shell cmd to execute after tun device open
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:91
-msgid "Shell cmd to execute after tun device open"
-msgstr "tun设备打开后运行shell命令行"
-
-#. Delay tun/tap open and up script execution
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:92
-msgid "Delay tun/tap open and up script execution"
-msgstr "延迟tun/tap的打开并加速脚本执行"
-
-#. Shell cmd to run after tun device close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:93
-msgid "Shell cmd to run after tun device close"
-msgstr "tun设备关闭后运行shell命令行e"
-
-#. Call down cmd/script before TUN/TAP close
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:94
-msgid "Call down cmd/script before TUN/TAP close"
-msgstr "TUN/TAP关闭前关闭命令行及脚本"
-
-#. Run up/down scripts for all restarts
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:95
-msgid "Run up/down scripts for all restarts"
-msgstr "每次重启都执行启动/关闭脚本"
-
-#. Set UID to user
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:96
-msgid "Set UID to user"
-msgstr "为用户设置UID值"
-
-#. Set GID to group
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:97
-msgid "Set GID to group"
-msgstr "为群组设置GID值"
-
-#. Chroot to directory after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:98
-msgid "Chroot to directory after initialization"
-msgstr "初始化后改变根目录"
-
-#. Change to directory before initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:99
-msgid "Change to directory before initialization"
-msgstr "初始化前改变根目录"
-
-#. Daemonize after initialization
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:100
-msgid "Daemonize after initialization"
-msgstr "初始化后进入后台运行"
-
-#. Output to syslog and do not daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:101
-msgid "Output to syslog and do not daemonize"
-msgstr "显式输出到syslog"
-
-#. Run as an inetd or xinetd server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:102
-msgid "Run as an inetd or xinetd server"
-msgstr "以inetd或xinetd服务器的方式运行"
-
-#. Write log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:103
-msgid "Write log to file"
-msgstr "保存日志至文件"
-
-#. Append log to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:104
-msgid "Append log to file"
-msgstr "添加日志至文件"
-
-#. Don't log timestamps
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:105
-msgid "Don't log timestamps"
-msgstr "不记录时间戳"
-
-#. Write process ID to file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:106
-msgid "Write process ID to file"
-msgstr "记录进程ID至文件"
-
-#. Change process priority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:107
-msgid "Change process priority"
-msgstr "改变进程优先级"
-
-#. Echo parameters to log
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:108
-msgid "Echo parameters to log"
-msgstr "把参数写入日志"
-
-#. Set output verbosity
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:109
-msgid "Set output verbosity"
-msgstr "设置输出冗余级别"
-
-#. Limit repeated log messages
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:110
-msgid "Limit repeated log messages"
-msgstr "限制重复性的日志消息"
-
-#. Write status to file every n seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:111
-msgid "Write status to file every n seconds"
-msgstr "每n秒后写状态值至文件"
-
-#. Status file format version
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:112
-msgid "Status file format version"
-msgstr "显式文件格式版本的状态"
-
-#. Disable options consistency check
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:113
-msgid "Disable options consistency check"
-msgstr "禁止选项一致性检查"
-
-#. Special stress testing mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:114
-msgid "Special stress testing mode"
-msgstr "特殊的压力测试模式"
-
-#. Use fast LZO compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:115
-msgid "Use fast LZO compression"
-msgstr "使用快速LZO压缩"
-
-#. Don't use adaptive lzo compression
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:116
-msgid "Don't use adaptive lzo compression"
-msgstr "不用自适应的lzo压缩"
-
-#. Enable management interface on IP port
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:117
-msgid "Enable management interface on IP port"
-msgstr "在IP port上启用可管理接口"
-
-#. Management interface will connect as a TCP client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:118
-msgid "Management interface will connect as a TCP client"
-msgstr "接口管理将以TCP客户端的方式连接"
-
-#. Query management channel for private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:119
-msgid "Query management channel for private key"
-msgstr "为私人密钥查询管理通道"
-
-#. Start OpenVPN in a hibernating state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:120
-msgid "Start OpenVPN in a hibernating state"
-msgstr "以休眠的状态打开OpenVPN"
-
-#. Issue SIGUSR1 on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:121
-msgid "Issue SIGUSR1 on management disconnect"
-msgstr "当管理断开时发送SIGUSR1信号"
-
-#. Forget passwords on management disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:122
-msgid "Forget passwords on management disconnect"
-msgstr "当管理断开时清除密码"
-
-#. Number of lines for log file history
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:123
-msgid "Number of lines for log file history"
-msgstr "历史日志文件的行数"
-
-#. Load plug-in module
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:124
-msgid "Load plug-in module"
-msgstr "加载插件"
-
-#. Configure server mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:125
-msgid "Configure server mode"
-msgstr "配置服务器模式"
-
-#. Configure server bridge
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:126
-msgid "Configure server bridge"
-msgstr "配置服务器桥接"
-
-#. Push options to peer
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:127
-msgid "Push options to peer"
-msgstr "主动向端点发送选项"
-
-#. Don't inherit global push options
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:128
-msgid "Don't inherit global push options"
-msgstr "不继承全局主动发送选项"
-
-#. Set aside a pool of subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:129
-msgid "Set aside a pool of subnets"
-msgstr "设置为拒绝子网线程池模式"
-
-#. Use individual addresses rather than /30 subnets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:130
-msgid "Use individual addresses rather than /30 subnets"
-msgstr "利用个人地址代替/30 子网"
-
-#. Persist/unpersist ifconfig-pool
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:131
-msgid "Persist/unpersist ifconfig-pool"
-msgstr "持久/非持久ifconfig池"
-
-#. Push an ifconfig option to remote
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:132
-msgid "Push an ifconfig option to remote"
-msgstr "主动向远程发送ifconfig选项"
-
-#. Route subnet to client
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:133
-msgid "Route subnet to client"
-msgstr "路由子网至客户端"
-
-#. Client is disabled
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:134
-msgid "Client is disabled"
-msgstr "客户端已被禁止"
-
-#. Don't require client certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:135
-msgid "Don't require client certificate"
-msgstr "不需要客户的证书"
-
-#. Use username as common name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:136
-msgid "Use username as common name"
-msgstr "把用户名作为通用名称"
-
-#. Script to verify interactive authentication
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:137
-msgid "Script to verify interactive authentication"
-msgstr "以脚本的方式进行交互式的身份验证"
-
-#. Allow client-to-client traffic
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:138
-msgid "Allow client-to-client traffic"
-msgstr "允许客户端到客户端的通信"
-
-#. Allow multiple clients with same certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:139
-msgid "Allow multiple clients with same certificate"
-msgstr "允许多用户共用同一证书"
-
-#. Run script cmd on client connection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:140
-msgid "Run script cmd on client connection"
-msgstr "当客户端连接时在命令行下允许脚本"
-
-#. Run script cmd on client disconnection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:141
-msgid "Run script cmd on client disconnection"
-msgstr "当客户端断开时在命令行下允许脚本"
-
-#. Directory for custom client config files
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:142
-msgid "Directory for custom client config files"
-msgstr "自定义客户端配置文件的目录"
-
-#. Refuse connection if no custom client config
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:143
-msgid "Refuse connection if no custom client config"
-msgstr "拒接没有自定义客户端配置的连接"
-
-#. Temporary directory for client-connect return file
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:144
-msgid "Temporary directory for client-connect return file"
-msgstr "客户端连接返回文件的临时目录"
-
-#. Set size of real and virtual address hash tables
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:145
-msgid "Set size of real and virtual address hash tables"
-msgstr "设置实际和虚拟地址的哈希表大小"
-
-#. Number of allocated broadcast buffers
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:146
-msgid "Number of allocated broadcast buffers"
-msgstr "已分配的广播缓冲区数量"
-
-#. Maximum number of queued TCP output packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:147
-msgid "Maximum number of queued TCP output packets"
-msgstr "TCP队列中输出包的最大数量"
-
-#. Script to validate client virtual addresses
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:148
-msgid "Script to validate client virtual addresses"
-msgstr "以脚本的方式验证客户端虚拟地址"
-
-#. Allowed maximum of new connections
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:149
-msgid "Allowed maximum of new connections"
-msgstr "允许最大新建连接数"
-
-#. Allowed maximum of connected clients
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:150
-msgid "Allowed maximum of connected clients"
-msgstr "允许最大已连接客户端数"
-
-#. Allowed maximum of internal
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:151
-msgid "Allowed maximum of internal"
-msgstr "允许最大内部连接"
-
-#. Proxy incoming HTTPS sessions
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:152
-msgid "Proxy incoming HTTPS sessions"
-msgstr "代理传入的HTTPs会话"
-
-#. Configure client mode
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:153
-msgid "Configure client mode"
-msgstr "配置客户端模式"
-
-#. Authenticate using username/password
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:154
-msgid "Authenticate using username/password"
-msgstr "以用户名/密码的方式进行验证"
-
-#. Accept options pushed from server
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:155
msgid "Accept options pushed from server"
msgstr "接受从服务器发送过来的选项"
-#. Handling of authentication failures
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:156
-msgid "Handling of authentication failures"
-msgstr "处理验证失败"
+msgid "Add"
+msgstr ""
-#. Send notification to peer on disconnect
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:157
-msgid "Send notification to peer on disconnect"
-msgstr "断开连接时向客户端发送通知"
+msgid "Add route after establishing connection"
+msgstr "建立连接后添加路由"
-#. Enable Static Key encryption mode (non-TLS)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:158
-msgid "Enable Static Key encryption mode (non-TLS)"
-msgstr "允许静态密钥加密模式"
-
-#. HMAC authentication for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:159
-msgid "HMAC authentication for packets"
-msgstr "利用HMAC水印算法校验数据包"
-
-#. Encryption cipher for packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:160
-msgid "Encryption cipher for packets"
-msgstr "加密数据包"
-
-#. Size of cipher key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:161
-msgid "Size of cipher key"
-msgstr "密钥大小"
-
-#. Enable OpenSSL hardware crypto engines
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:162
-msgid "Enable OpenSSL hardware crypto engines"
-msgstr "打开OpenSSL硬件加密引擎"
-
-#. Disable replay protection
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:163
-msgid "Disable replay protection"
-msgstr "关闭重播保护"
-
-#. Silence the output of replay warnings
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:164
-msgid "Silence the output of replay warnings"
-msgstr "以静音的方式发出重播警告"
-
-#. Replay protection sliding window size
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:165
-msgid "Replay protection sliding window size"
-msgstr "重播保护的滑动窗口大小"
-
-#. Disable cipher initialisation vector
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:166
-msgid "Disable cipher initialisation vector"
-msgstr "关闭加密的初始化向量"
-
-#. Persist replay-protection state
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:167
-msgid "Persist replay-protection state"
-msgstr "保存重播保护的状态"
-
-#. Run a self-test of crypto features
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:168
-msgid "Run a self-test of crypto features"
-msgstr "运行加密特征自我检查"
-
-#. Enable TLS and assume server role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:169
-msgid "Enable TLS and assume server role"
-msgstr "允许TLS并伪装为服务器"
-
-#. Enable TLS and assume client role
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:170
-msgid "Enable TLS and assume client role"
-msgstr "允许TLS并伪装为客户端"
-
-#. Data channel key exchange method
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:171
-msgid "Data channel key exchange method"
-msgstr "数据通道密钥交换方式"
-
-#. Certificate authority
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:172
-msgid "Certificate authority"
-msgstr "认证授权"
-
-#. Directory of trusted certificates (CAs and CRLs)
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:173
-msgid "Directory of trusted certificates (CAs and CRLs)"
-msgstr "信任证书的目录(CAs and CRLs)"
-
-#. Diffie Hellman parameters
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:174
-msgid "Diffie Hellman parameters"
-msgstr "Diffie–Hellman/DH密钥交换 参数"
-
-#. Local certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:175
-msgid "Local certificate"
-msgstr "本地证书"
-
-#. Local private key
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:176
-msgid "Local private key"
-msgstr "本地私人密钥"
-
-#. PKCS#12 file containing keys
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:177
-msgid "PKCS#12 file containing keys"
-msgstr "PKCS#12文件包含的密钥"
-
-#. TLS cipher
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:178
-msgid "TLS cipher"
-msgstr "TLS加密"
-
-#. Retransmit timeout on TLS control channel
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:179
-msgid "Retransmit timeout on TLS control channel"
-msgstr "TLS控制通道超时后重新发送"
-
-#. Renegotiate data chan. key after bytes
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:180
-msgid "Renegotiate data chan. key after bytes"
-msgstr "传输若干字节后重新验证数据通道密钥"
-
-#. Renegotiate data chan. key after packets
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:181
-msgid "Renegotiate data chan. key after packets"
-msgstr "传输若干数据包后重新验证数据通道密钥"
-
-#. Renegotiate data chan. key after seconds
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:182
-msgid "Renegotiate data chan. key after seconds"
-msgstr "传输若干秒后重新验证数据通道密钥"
-
-#. Timeframe for key exchange
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:183
-msgid "Timeframe for key exchange"
-msgstr "密钥交换时间表"
-
-#. Key transition window
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:184
-msgid "Key transition window"
-msgstr "密钥传输滑动窗口"
-
-#. Allow only one session
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:185
-msgid "Allow only one session"
-msgstr "只允许一个会话"
-
-#. Exit on TLS negotiation failure
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:186
-msgid "Exit on TLS negotiation failure"
-msgstr "TLS验证失败后退出"
-
-#. Additional authentication over TLS
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:187
msgid "Additional authentication over TLS"
msgstr "TLS以外的验证"
-#. Get PEM password from controlling tty before we daemonize
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:188
-msgid "Get PEM password from controlling tty before we daemonize"
-msgstr "后台运行前从控制的tty中获取PEM密码"
+msgid "Allow client-to-client traffic"
+msgstr "允许客户端到客户端的通信"
-#. Don't cache --askpass or --auth-user-pass passwords
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:189
-msgid "Don't cache --askpass or --auth-user-pass passwords"
-msgstr "不缓存--askpass 或--auth-user-pass passwords"
+msgid "Allow multiple clients with same certificate"
+msgstr "允许多用户共用同一证书"
+
+msgid "Allow only one session"
+msgstr "只允许一个会话"
+
+msgid "Allow remote to change its IP or port"
+msgstr "允许远程修改ip和端口"
+
+msgid "Allowed maximum of connected clients"
+msgstr "允许最大已连接客户端数"
+
+msgid "Allowed maximum of internal"
+msgstr "允许最大内部连接"
+
+msgid "Allowed maximum of new connections"
+msgstr "允许最大新建连接数"
+
+msgid "Append log to file"
+msgstr "添加日志至文件"
+
+msgid "Authenticate using username/password"
+msgstr "以用户名/密码的方式进行验证"
+
+msgid "Automatically redirect default route"
+msgstr "自动重定向至默认路由"
+
+msgid "Below is a list of configured OpenVPN instances and their current state"
+msgstr "Openvpn已配置实例及其当前状态列表"
+
+msgid "Call down cmd/script before TUN/TAP close"
+msgstr "TUN/TAP关闭前关闭命令行及脚本"
+
+msgid "Certificate authority"
+msgstr "认证授权"
+
+msgid "Change process priority"
+msgstr "改变进程优先级"
+
+msgid "Change to directory before initialization"
+msgstr "初始化前改变根目录"
-#. Check peer certificate against a CRL
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:190
msgid "Check peer certificate against a CRL"
msgstr "验证客户端证书以确保其是否过期"
-#. Shell command to verify X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:191
-msgid "Shell command to verify X509 name"
-msgstr "运行shell命令以验证X509名称"
+msgid "Chroot to directory after initialization"
+msgstr "初始化后改变根目录"
+
+msgid "Client is disabled"
+msgstr "客户端已被禁止"
+
+msgid "Configuration category"
+msgstr ""
+
+msgid "Configure client mode"
+msgstr "配置客户端模式"
+
+msgid "Configure server bridge"
+msgstr "配置服务器桥接"
+
+msgid "Configure server mode"
+msgstr "配置服务器模式"
+
+msgid "Connect through Socks5 proxy"
+msgstr "通过Sock5代理连接"
+
+msgid "Connect to remote host through an HTTP proxy"
+msgstr ""
+
+msgid "Connection retry interval"
+msgstr "连接重试时间间隔"
+
+msgid "Daemonize after initialization"
+msgstr "初始化后进入后台运行"
+
+msgid "Delay n seconds after connection"
+msgstr ""
+
+msgid "Delay tun/tap open and up script execution"
+msgstr "延迟tun/tap的打开并加速脚本执行"
+
+msgid "Diffie Hellman parameters"
+msgstr "Diffie–Hellman/DH密钥交换 参数"
+
+msgid "Directory for custom client config files"
+msgstr "自定义客户端配置文件的目录"
+
+msgid "Disable Paging"
+msgstr "禁止分页"
+
+msgid "Disable cipher initialisation vector"
+msgstr "关闭加密的初始化向量"
+
+msgid "Disable options consistency check"
+msgstr "禁止选项一致性检查"
+
+msgid "Disable replay protection"
+msgstr "关闭重播保护"
+
+msgid "Do not bind to local address and port"
+msgstr "不绑定本地地址和端口"
+
+msgid "Don't actually execute ifconfig"
+msgstr "不实际执行ifconfig命令"
+
+msgid "Don't add routes automatically"
+msgstr "不自动添加路由"
+
+msgid "Don't cache --askpass or --auth-user-pass passwords"
+msgstr "不缓存--askpass 或--auth-user-pass passwords"
+
+msgid "Don't inherit global push options"
+msgstr "不继承全局主动发送选项"
+
+msgid "Don't log timestamps"
+msgstr "不记录时间戳"
+
+msgid "Don't re-read key on restart"
+msgstr "服务重启时不重读密钥值"
+
+msgid "Don't require client certificate"
+msgstr "不需要客户的证书"
+
+msgid "Don't use adaptive lzo compression"
+msgstr "不用自适应的lzo压缩"
+
+msgid "Don't warn on ifconfig inconsistencies"
+msgstr "ifconfig不一致时不警告"
+
+msgid "Echo parameters to log"
+msgstr "把参数写入日志"
+
+msgid "Empirically measure MTU"
+msgstr "以历史值估算MTU值"
+
+msgid "Enable OpenSSL hardware crypto engines"
+msgstr "打开OpenSSL硬件加密引擎"
+
+msgid "Enable Path MTU discovery"
+msgstr "启用路径MTU发现"
+
+msgid "Enable Static Key encryption mode (non-TLS)"
+msgstr "允许静态密钥加密模式"
+
+msgid "Enable TLS and assume client role"
+msgstr "允许TLS并伪装为客户端"
+
+msgid "Enable TLS and assume server role"
+msgstr "允许TLS并伪装为服务器"
+
+msgid "Enable internal datagram fragmentation"
+msgstr "允许内部数据报分片"
+
+msgid "Enable management interface on IP port"
+msgstr "在IP port上启用可管理接口"
+
+msgid "Enabled"
+msgstr "启用"
+
+msgid "Encryption cipher for packets"
+msgstr "加密数据包"
+
+msgid "Execute shell cmd after routes are added"
+msgstr "添加路由后执行shell命令"
+
+msgid "Execute shell command on remote ip change"
+msgstr "当远程ip改变时执行shell命令"
+
+msgid ""
+"Executed in server mode on new client connections, when the client is still "
+"untrusted"
+msgstr ""
+
+msgid ""
+"Executed in server mode whenever an IPv4 address/route or MAC address is "
+"added to OpenVPN's internal routing table"
+msgstr ""
+
+msgid "Exit on TLS negotiation failure"
+msgstr "TLS验证失败后退出"
+
+msgid "Get PEM password from controlling tty before we daemonize"
+msgstr "后台运行前从控制的tty中获取PEM密码"
+
+msgid "HMAC authentication for packets"
+msgstr "利用HMAC水印算法校验数据包"
+
+msgid "Handling of authentication failures"
+msgstr "处理验证失败"
+
+msgid ""
+"Helper directive to simplify the expression of --ping and --ping-restart in "
+"server mode configurations"
+msgstr ""
+
+msgid "If hostname resolve fails, retry"
+msgstr "如果主机名解析错误,重试"
+
+msgid "Instance \"%s\""
+msgstr "实例 \"%s\""
+
+msgid "Invalid"
+msgstr ""
+
+msgid "Keep local IP address on restart"
+msgstr "服务重启时保持本地IP地址"
+
+msgid "Keep remote IP address on restart"
+msgstr "服务重启时保持远程IP地址"
+
+msgid "Keep tun/tap device open on restart"
+msgstr "服务重启时自动打开 tun/tap 设备"
+
+msgid "Key transition window"
+msgstr "密钥传输滑动窗口"
+
+msgid "Limit repeated log messages"
+msgstr "限制重复性的日志消息"
+
+msgid "Local certificate"
+msgstr "本地证书"
+
+msgid "Local host name or ip address"
+msgstr "本地主机名或ip地址"
+
+msgid "Local private key"
+msgstr "本地私人密钥"
+
+msgid "Major mode"
+msgstr "主要模式"
+
+msgid "Make tun device IPv6 capable"
+msgstr "使 tun 设备兼容IPv6"
+
+msgid "Maximum number of queued TCP output packets"
+msgstr "TCP队列中输出包的最大数量"
+
+msgid "Number of allocated broadcast buffers"
+msgstr "已分配的广播缓冲区数量"
+
+msgid "Number of lines for log file history"
+msgstr "历史日志文件的行数"
-#. Only accept connections from given X509 name
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:192
msgid "Only accept connections from given X509 name"
msgstr "只接收已给定的X509名称的连接"
-#. Require explicit designation on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:193
+msgid "Only process ping timeouts if routes exist"
+msgstr "当且仅当路由存在时处理ping超时"
+
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+msgid "OpenVPN instances"
+msgstr "OpenVPN 实例"
+
+msgid "Optimize TUN/TAP/UDP writes"
+msgstr "优化 TUN/TAP/UDP 写入"
+
+msgid "Output to syslog and do not daemonize"
+msgstr "显式输出到syslog"
+
+msgid "Overview"
+msgstr ""
+
+msgid "PKCS#12 file containing keys"
+msgstr "PKCS#12文件包含的密钥"
+
+msgid "Pass environment variables to script"
+msgstr "传递环境变量至脚本"
+
+msgid "Persist replay-protection state"
+msgstr "保存重播保护的状态"
+
+msgid "Persist/unpersist ifconfig-pool"
+msgstr "持久/非持久ifconfig池"
+
+msgid "Ping remote every n seconds over TCP/UDP port"
+msgstr "每n秒ping一次远程 TCP/UDP 端口"
+
+msgid "Policy level over usage of external programs and scripts"
+msgstr ""
+
+msgid "Port"
+msgstr "端口"
+
+msgid "Protocol"
+msgstr "协议"
+
+msgid "Proxy timeout in seconds"
+msgstr "代理超时,单位秒"
+
+msgid "Push an ifconfig option to remote"
+msgstr "主动向远程发送ifconfig选项"
+
+msgid "Push options to peer"
+msgstr "主动向端点发送选项"
+
+msgid "Query management channel for private key"
+msgstr "为私人密钥查询管理通道"
+
+msgid "Randomly choose remote server"
+msgstr "随机选择远程服务器"
+
+msgid "Refuse connection if no custom client config"
+msgstr "拒接没有自定义客户端配置的连接"
+
+msgid "Remap SIGUSR1 signals"
+msgstr "重映射SIGUSR1信号"
+
+msgid "Remote host name or ip address"
+msgstr "远程主机名或ip地址"
+
+msgid "Remote ping timeout"
+msgstr "远程ping超时"
+
+msgid "Renegotiate data chan. key after bytes"
+msgstr "传输若干字节后重新验证数据通道密钥"
+
+msgid "Renegotiate data chan. key after packets"
+msgstr "传输若干数据包后重新验证数据通道密钥"
+
+msgid "Renegotiate data chan. key after seconds"
+msgstr "传输若干秒后重新验证数据通道密钥"
+
+msgid "Replay protection sliding window size"
+msgstr "重播保护的滑动窗口大小"
+
msgid "Require explicit designation on certificate"
msgstr "证书需要显式指定"
-#. Require explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:194
msgid "Require explicit key usage on certificate"
msgstr "证书需要明确的密钥"
-#. Require extended explicit key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:195
-msgid "Require extended explicit key usage on certificate"
-msgstr "证书需要明确的扩展密钥"
+msgid "Restart after remote ping timeout"
+msgstr "远程ping超时后重启"
-#. Require normal and extended key usage on certificate
-#: applications/luci-openvpn/luasrc/i18n/openvpn.en.lua:196
-msgid "Require normal and extended key usage on certificate"
-msgstr "证书需要明确的正常密钥盒扩展密钥"
+msgid "Retransmit timeout on TLS control channel"
+msgstr "TLS控制通道超时后重新发送"
+
+msgid "Retry indefinitely on HTTP proxy errors"
+msgstr "无限重试直至代理正确"
+
+msgid "Retry indefinitely on Socks proxy errors"
+msgstr "无限重试直至Socks代理正确"
+
+msgid "Route subnet to client"
+msgstr "路由子网至客户端"
+
+msgid "Run as an inetd or xinetd server"
+msgstr "以inetd或xinetd服务器的方式运行"
+
+msgid "Run script cmd on client connection"
+msgstr "当客户端连接时在命令行下允许脚本"
+
+msgid "Run script cmd on client disconnection"
+msgstr "当客户端断开时在命令行下允许脚本"
+
+msgid "Run up/down scripts for all restarts"
+msgstr "每次重启都执行启动/关闭脚本"
+
+msgid "Send notification to peer on disconnect"
+msgstr "断开连接时向客户端发送通知"
+
+msgid "Set GID to group"
+msgstr "为群组设置GID值"
+
+msgid "Set TCP/UDP MTU"
+msgstr "设置TCP/UDP的MTU值"
+
+msgid "Set UID to user"
+msgstr "为用户设置UID值"
+
+msgid "Set aside a pool of subnets"
+msgstr "设置为拒绝子网线程池模式"
+
+msgid "Set extended HTTP proxy options"
+msgstr "设置HTTP扩展代理选项"
+
+msgid "Set output verbosity"
+msgstr "设置输出冗余级别"
+
+msgid "Set size of real and virtual address hash tables"
+msgstr "设置实际和虚拟地址的哈希表大小"
+
+msgid "Set the TCP/UDP receive buffer size"
+msgstr "设置TCP/UDP接收缓冲区大小"
+
+msgid "Set the TCP/UDP send buffer size"
+msgstr "设置TCP/UDP发送缓冲区大小"
+
+msgid "Set tun/tap TX queue length"
+msgstr "设置tun/tap发送队列长度"
+
+msgid "Set tun/tap adapter parameters"
+msgstr ""
+
+msgid "Set tun/tap device MTU"
+msgstr "设置tun/tap设备的MTU值"
+
+msgid "Set tun/tap device overhead"
+msgstr "设置tun/tap设备的开销"
+
+msgid "Set upper bound on TCP MSS"
+msgstr "设置TCP MSS的上限"
+
+msgid "Shaping for peer bandwidth"
+msgstr "改变结点带宽"
+
+msgid "Shell cmd to execute after tun device open"
+msgstr "tun设备打开后运行shell命令行"
+
+msgid "Shell cmd to run after tun device close"
+msgstr "tun设备关闭后运行shell命令行e"
+
+msgid "Shell command to verify X509 name"
+msgstr "运行shell命令以验证X509名称"
+
+msgid "Silence the output of replay warnings"
+msgstr "以静音的方式发出重播警告"
+
+msgid "Size of cipher key"
+msgstr "密钥大小"
+
+msgid "Specify a default gateway for routes"
+msgstr "指定路由默认网关"
+
+msgid "Start OpenVPN in a hibernating state"
+msgstr "以休眠的状态打开OpenVPN"
+
+msgid "Start/Stop"
+msgstr ""
+
+msgid "Started"
+msgstr "已运行的"
+
+msgid "Status file format version"
+msgstr "显式文件格式版本的状态"
+
+msgid "Switch to advanced configuration »"
+msgstr "高级配置 »"
+
+msgid "TCP/UDP port # for both local and remote"
+msgstr "TCP/UDP 端口 # 同时针对本地和远程"
+
+msgid "TCP/UDP port # for local (default=1194)"
+msgstr "TCP/UDP 端口 # 本地 (默认 1194)"
+
+msgid "TCP/UDP port # for remote (default=1194)"
+msgstr "TCP/UDP 端口 # 远程 (默认 1194)"
+
+msgid "TLS cipher"
+msgstr "TLS加密"
+
+msgid "TOS passthrough (applies to IPv4 only)"
+msgstr "TOS 穿透 (仅限IPv4)"
+
+msgid "Temporary directory for client-connect return file"
+msgstr "客户端连接返回文件的临时目录"
+
+msgid "Timeframe for key exchange"
+msgstr "密钥交换时间表"
+
+msgid "Type of used device"
+msgstr "使用设备类型"
+
+msgid "Use fast LZO compression"
+msgstr "使用快速LZO压缩"
+
+msgid "Use individual addresses rather than /30 subnets"
+msgstr "利用个人地址代替/30 子网"
+
+msgid "Use protocol"
+msgstr "采用协议"
+
+msgid "Use tun/tap device node"
+msgstr "使用 tun/tap 设备节点"
+
+msgid "Use username as common name"
+msgstr "把用户名作为通用名称"
+
+msgid "Write log to file"
+msgstr "保存日志至文件"
+
+msgid "Write process ID to file"
+msgstr "记录进程ID至文件"
+
+msgid "Write status to file every n seconds"
+msgstr "每n秒后写状态值至文件"
+
+msgid "no"
+msgstr "否"
+
+msgid "openvpn_%s"
+msgstr ""
+
+msgid "openvpn_%s_desc"
+msgstr ""
+
+msgid "openvpn_param_%s"
+msgstr ""
+
+msgid "openvpn_param_%s_desc"
+msgstr ""
+
+msgid "tun/tap device"
+msgstr "tun/tap 设备"
+
+msgid "tun/tap inactivity timeout"
+msgstr "tun/tap 休眠超时"
+
+msgid "yes (%i)"
+msgstr "是 (%i)"
+
+msgid "« Switch to basic configuration"
+msgstr "« 基本配置"
+
+#~ msgid "Daemon configuration"
+#~ msgstr "后台配置"
+
+#~ msgid "Networking options"
+#~ msgstr "网络选项"
+
+#~ msgid "VPN options"
+#~ msgstr "VPN 选项"
+
+#~ msgid "Cryptography settings"
+#~ msgstr "加密设置"
+
+#~ msgid "Read configuration options from file"
+#~ msgstr "从配置文件读取配置选项"
+
+#~ msgid "Connection timeout"
+#~ msgstr "连接超时"
+
+#~ msgid "Maximum connection attempt retries"
+#~ msgstr "最大连接尝试次数"
+
+#~ msgid "Try to sense proxy settings automatically"
+#~ msgstr "尝试自动检测代理设置"
+
+#~ msgid "Connect to remote host"
+#~ msgstr "连接到远程主机"
+
+#~ msgid "Bind to local address and port"
+#~ msgstr "绑定本地地址和端口"
+
+#~ msgid "Set the link layer address of the tap device"
+#~ msgstr "设置 tap 设备的数据链路层地址"
+
+#~ msgid "Configure device to use IP address"
+#~ msgstr "配置设备使用ip地址"
+
+#~ msgid "Specify a default metric for routes"
+#~ msgstr "指定路由默认权值"
+
+#~ msgid "Delay n seconds after connection "
+#~ msgstr "连接后延迟n秒 "
+
+#~ msgid "Don't pull options from server"
+#~ msgstr "不从服务器获取设置参数"
+
+#~ msgid "Set timeouts in server mode"
+#~ msgstr "设置服务器模式下的超时"
+
+#~ msgid "Configure a multi-homed UDP server"
+#~ msgstr "配置多宿UDP服务器"
+
+#~ msgid "Special stress testing mode"
+#~ msgstr "特殊的压力测试模式"
+
+#~ msgid "Management interface will connect as a TCP client"
+#~ msgstr "接口管理将以TCP客户端的方式连接"
+
+#~ msgid "Issue SIGUSR1 on management disconnect"
+#~ msgstr "当管理断开时发送SIGUSR1信号"
+
+#~ msgid "Forget passwords on management disconnect"
+#~ msgstr "当管理断开时清除密码"
+
+#~ msgid "Load plug-in module"
+#~ msgstr "加载插件"
+
+#~ msgid "Script to verify interactive authentication"
+#~ msgstr "以脚本的方式进行交互式的身份验证"
+
+#~ msgid "Script to validate client virtual addresses"
+#~ msgstr "以脚本的方式验证客户端虚拟地址"
+
+#~ msgid "Proxy incoming HTTPS sessions"
+#~ msgstr "代理传入的HTTPs会话"
+
+#~ msgid "Run a self-test of crypto features"
+#~ msgstr "运行加密特征自我检查"
+
+#~ msgid "Data channel key exchange method"
+#~ msgstr "数据通道密钥交换方式"
+
+#~ msgid "Directory of trusted certificates (CAs and CRLs)"
+#~ msgstr "信任证书的目录(CAs and CRLs)"
+
+#~ msgid "Require extended explicit key usage on certificate"
+#~ msgstr "证书需要明确的扩展密钥"
+
+#~ msgid "Require normal and extended key usage on certificate"
+#~ msgstr "证书需要明确的正常密钥盒扩展密钥"