diff --git a/baidudrive/Makefile b/baidudrive/Makefile index 97fb14a3..05133f79 100644 --- a/baidudrive/Makefile +++ b/baidudrive/Makefile @@ -10,8 +10,8 @@ include $(TOPDIR)/rules.mk PKG_ARCH_BAIDUDRIVE:=$(ARCH) PKG_NAME:=baidudrive -PKG_VERSION:=linkeasefull-runtime-v3.0.17 -PKG_RELEASE:=19 +PKG_VERSION:=kaiplus-runtime-v1.0.7 +PKG_RELEASE:=20 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/baidudrive-runtime-v$(PKG_VERSION)/ PKG_HASH:=skip diff --git a/dockermanager/Makefile b/dockermanager/Makefile index 3f437457..2aca20ed 100644 --- a/dockermanager/Makefile +++ b/dockermanager/Makefile @@ -9,8 +9,8 @@ include $(TOPDIR)/rules.mk PKG_ARCH_DOCKERMANAGER:=$(ARCH) PKG_NAME:=dockermanager -PKG_VERSION:=linkeasefull-runtime-v3.0.17 -PKG_RELEASE:=5 +PKG_VERSION:=kaiplus-runtime-v1.0.7 +PKG_RELEASE:=6 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/dockermanager-runtime-v$(PKG_VERSION)/ PKG_HASH:=skip diff --git a/frp/Makefile b/frp/Makefile index 09c11d51..a5a15b1e 100644 --- a/frp/Makefile +++ b/frp/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=frp PKG_VERSION:=0.71.0 -PKG_RELEASE:=7 +PKG_RELEASE:=8 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/fatedier/frp/tar.gz/v$(PKG_VERSION)? diff --git a/frp/files/frpc.config b/frp/files/frpc.config index 85a268bf..bada9870 100644 --- a/frp/files/frpc.config +++ b/frp/files/frpc.config @@ -1,5 +1,5 @@ config init - option enabled '1' + option enabled '0' option stdout '1' option stderr '1' # Uncomment to run frpc as an existing user/group. Keep disabled by diff --git a/frp/files/frpc.init b/frp/files/frpc.init index 4e46bc26..c2e22d41 100644 --- a/frp/files/frpc.init +++ b/frp/files/frpc.init @@ -912,7 +912,7 @@ service_triggers() { start_service() { local init_cfg= - local enabled=1 + local enabled=0 local stdout=1 local stderr=1 local respawn=1 @@ -925,17 +925,9 @@ start_service() { config_foreach _find_init_section init if [ -n "$init_cfg" ]; then - config_list_foreach "$init_cfg" conf_inc _append_conf_file - - config_get_bool enabled "$init_cfg" enabled 1 - config_get_bool stdout "$init_cfg" stdout 1 - config_get_bool stderr "$init_cfg" stderr 1 - config_get_bool respawn "$init_cfg" respawn 1 - config_get run_user "$init_cfg" user - config_get run_group "$init_cfg" group + config_get_bool enabled "$init_cfg" enabled 0 fi - - [ "$enabled" -eq 0 ] && return 1 + [ "$enabled" -eq 1 ] || return 0 mkdir -p /var/etc _TOML_ERR=0 @@ -962,6 +954,17 @@ start_service() { } >> "$CONF_FILE" || return 1 [ "$_TOML_ERR" = "0" ] || return 1 + if [ -n "$init_cfg" ]; then + config_list_foreach "$init_cfg" conf_inc _append_conf_file + [ "$_TOML_ERR" = "0" ] || return 1 + + config_get_bool stdout "$init_cfg" stdout 1 + config_get_bool stderr "$init_cfg" stderr 1 + config_get_bool respawn "$init_cfg" respawn 1 + config_get run_user "$init_cfg" user + config_get run_group "$init_cfg" group + fi + { config_foreach _emit_conf_section conf } >> "$CONF_FILE" || return 1 diff --git a/frp/files/frpc.uci-defaults b/frp/files/frpc.uci-defaults index 5618db80..e669a9f0 100644 --- a/frp/files/frpc.uci-defaults +++ b/frp/files/frpc.uci-defaults @@ -79,7 +79,7 @@ upgrade_init() { changed=1 fi - set_if_empty "$init_section" enabled 1 + set_if_empty "$init_section" enabled 0 set_if_empty "$init_section" stdout 1 set_if_empty "$init_section" stderr 1 set_if_empty "$init_section" respawn 1 diff --git a/frp/files/frps.config b/frp/files/frps.config index 58412aeb..daac0015 100644 --- a/frp/files/frps.config +++ b/frp/files/frps.config @@ -1,5 +1,5 @@ config init - option enabled '1' + option enabled '0' option stdout '1' option stderr '1' # Uncomment to run frps as an existing user/group. Keep disabled by diff --git a/frp/files/frps.init b/frp/files/frps.init index 851030eb..2e39b7bf 100644 --- a/frp/files/frps.init +++ b/frp/files/frps.init @@ -689,7 +689,7 @@ service_triggers() { start_service() { local init_cfg= - local enabled=1 + local enabled=0 local stdout=1 local stderr=1 local respawn=1 @@ -702,24 +702,14 @@ start_service() { config_foreach _find_init_section init if [ -n "$init_cfg" ]; then - config_list_foreach "$init_cfg" conf_inc _append_conf_file - - config_get_bool enabled "$init_cfg" enabled 1 - config_get_bool stdout "$init_cfg" stdout 1 - config_get_bool stderr "$init_cfg" stderr 1 - config_get_bool respawn "$init_cfg" respawn 1 - config_get run_user "$init_cfg" user - config_get run_group "$init_cfg" group + config_get_bool enabled "$init_cfg" enabled 0 fi - - [ "$enabled" -eq 0 ] && return 1 + [ "$enabled" -eq 1 ] || return 0 mkdir -p /var/etc _TOML_ERR=0 _ALLOW_UNSAFE_TOKEN_SOURCE_EXEC=0 - - old_umask="$(umask)" umask 077 : > "$CONF_FILE" || { @@ -741,7 +731,16 @@ start_service() { } >> "$CONF_FILE" || return 1 [ "$_TOML_ERR" = "0" ] || return 1 + if [ -n "$init_cfg" ]; then + config_list_foreach "$init_cfg" conf_inc _append_conf_file + [ "$_TOML_ERR" = "0" ] || return 1 + config_get_bool stdout "$init_cfg" stdout 1 + config_get_bool stderr "$init_cfg" stderr 1 + config_get_bool respawn "$init_cfg" respawn 1 + config_get run_user "$init_cfg" user + config_get run_group "$init_cfg" group + fi { config_foreach _emit_http_plugin http_plugin diff --git a/frp/files/frps.uci-defaults b/frp/files/frps.uci-defaults index e531b800..333c9073 100644 --- a/frp/files/frps.uci-defaults +++ b/frp/files/frps.uci-defaults @@ -90,7 +90,7 @@ upgrade_init() { changed=1 fi - set_if_empty "$init_section" enabled 1 + set_if_empty "$init_section" enabled 0 set_if_empty "$init_section" stdout 1 set_if_empty "$init_section" stderr 1 set_if_empty "$init_section" respawn 1 diff --git a/glorytun/Makefile b/glorytun/Makefile index 874e421d..3543e474 100755 --- a/glorytun/Makefile +++ b/glorytun/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=glorytun -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=95fa5ead2154adb546bcdb454c56c876e9f60bb5 PKG_SOURCE:=glorytun-$(PKG_VERSION).tar.gz @@ -50,13 +50,10 @@ endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/glorytun $(1)/usr/sbin/$(PKG_NAME) - $(INSTALL_BIN) files/glorytun-irq-affinity.sh $(1)/usr/sbin/glorytun-irq-affinity.sh $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) init $(1)/etc/init.d/$(PKG_NAME) $(INSTALL_DIR) $(1)/etc/config $(INSTALL_DATA) glorytun.config $(1)/etc/config/glorytun - $(INSTALL_DIR) $(1)/etc/glorytun - $(INSTALL_DATA) files/glorytun-sysctl.conf $(1)/etc/glorytun/glorytun-sysctl.conf endef $(eval $(call BuildPackage,$(PKG_NAME))) diff --git a/glorytun/files/glorytun-irq-affinity.sh b/glorytun/files/glorytun-irq-affinity.sh deleted file mode 100644 index d34a529c..00000000 --- a/glorytun/files/glorytun-irq-affinity.sh +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# Set IRQ affinity for glorytun interfaces -set_irq_affinity() { - local irq=$1 - local cpu=$2 - local mask=$(printf "%x" $((1 << $cpu))) - - echo "Setting IRQ $irq to CPU $cpu (mask: $mask)" - echo $mask > /proc/irq/$irq/smp_affinity -} - -# Get interface IRQs -get_interface_irqs() { - local interface=$1 - grep -E "$interface" /proc/interrupts | awk '{print $1}' | tr -d ':' -} - -# Main function -setup_irq_affinity() { - # Get available CPU cores - local cpu_count=$(grep -c processor /proc/cpuinfo) - echo "Available CPU cores: $cpu_count" - - # Determine tun interface - local tun_interface=$(ip link | grep tun | awk -F': ' '{print $2}' | head -n1) - if [ -z "$tun_interface" ]; then - echo "No tun interface found" - return 1 - fi - - echo "Found tun interface: $tun_interface" - - # Get IRQs for tun interface - local irqs=$(get_interface_irqs $tun_interface) - if [ -z "$irqs" ]; then - echo "No IRQs found for $tun_interface" - return 1 - fi - - # Distribute IRQs across available cores (except CPU0) - local cpu=1 - for irq in $irqs; do - set_irq_affinity $irq $cpu - cpu=$(( (cpu + 1) % cpu_count )) - if [ $cpu -eq 0 ]; then - cpu=1 - fi - done - - # Set RPS (Receive Packet Steering) for better packet distribution - if [ -e /sys/class/net/$tun_interface/queues/rx-0/rps_cpus ]; then - # Calculate mask for all CPUs except CPU0 - local rps_mask=$(printf "%x" $(( (1 << $cpu_count) - 2 ))) - echo "Setting RPS mask to $rps_mask for $tun_interface" - echo $rps_mask > /sys/class/net/$tun_interface/queues/rx-0/rps_cpus - fi - - # Set RFS (Receive Flow Steering) limits if available - if [ -e /proc/sys/net/core/rps_sock_flow_entries ]; then - echo 32768 > /proc/sys/net/core/rps_sock_flow_entries - if [ -e /sys/class/net/$tun_interface/queues/rx-0/rps_flow_cnt ]; then - echo 32768 > /sys/class/net/$tun_interface/queues/rx-0/rps_flow_cnt - fi - fi - - # Set XPS (Transmit Packet Steering) if available - if [ -e /sys/class/net/$tun_interface/queues/tx-0/xps_cpus ]; then - # Use all CPUs except CPU0 for transmit - local xps_mask=$(printf "%x" $(( (1 << $cpu_count) - 2 ))) - echo "Setting XPS mask to $xps_mask for $tun_interface" - echo $xps_mask > /sys/class/net/$tun_interface/queues/tx-0/xps_cpus - fi - - # Increase network queue length for better performance - if [ -e /sys/class/net/$tun_interface/tx_queue_len ]; then - echo 1000 > /sys/class/net/$tun_interface/tx_queue_len - fi - - echo "IRQ affinity setup completed for $tun_interface" -} - -# Run the main function -setup_irq_affinity - -exit 0 \ No newline at end of file diff --git a/glorytun/files/glorytun-sysctl.conf b/glorytun/files/glorytun-sysctl.conf deleted file mode 100644 index 22f4a9b3..00000000 --- a/glorytun/files/glorytun-sysctl.conf +++ /dev/null @@ -1,27 +0,0 @@ -# Glorytun-specific optimizations -# Note: These settings complement the system-wide sysctl parameters - -# Buffer size optimization for glorytun tunnels -# Increase only if not already set in system configuration -net.core.rmem_max = 16777216 -net.core.wmem_max = 16777216 -net.core.optmem_max = 16777216 - -# Enable BBR congestion control for better tunnel performance -net.core.default_qdisc = fq - -# RPS/RFS settings for tunnel interfaces -# These are critical for multicore performance with glorytun -net.core.rps_sock_flow_entries = 32768 - -# Network device tuning for tunnel interfaces -net.core.netdev_max_backlog = 10000 -net.core.netdev_budget = 600 -net.core.netdev_budget_usecs = 10000 - -# Lower TCP timeout for faster recovery of tunnel connections -net.ipv4.tcp_keepalive_intvl = 10 -net.ipv4.tcp_keepalive_probes = 6 - -# Disable slow start after idle for more consistent tunnel performance -net.ipv4.tcp_slow_start_after_idle = 0 \ No newline at end of file diff --git a/glorytun/glorytun.config b/glorytun/glorytun.config index 1735e209..78f97090 100755 --- a/glorytun/glorytun.config +++ b/glorytun/glorytun.config @@ -11,6 +11,5 @@ config glorytun 'vpn' option localip '10.255.255.2' option remoteip '10.255.255.1' option multiqueue '1' - option cpu_affinity '1' option label 'Default VPN' option timeout '10000' \ No newline at end of file diff --git a/glorytun/init b/glorytun/init index baf190e2..f1f27188 100755 --- a/glorytun/init +++ b/glorytun/init @@ -18,14 +18,6 @@ _err() { logger -p daemon.err -t ${PROG_NAME} "$@" } -# Apply system optimizations -apply_sysctl_optimizations() { - if [ -f /etc/glorytun/glorytun-sysctl.conf ]; then - _log "Applying system optimizations" - sysctl -q -p /etc/glorytun/glorytun-sysctl.conf - fi -} - validate_section() { uci_validate_section glorytun glorytun "${1}" \ 'enable:bool:0' \ @@ -38,50 +30,13 @@ validate_section() { 'timeout:uinteger:10000' \ 'chacha20:bool:0' \ 'multiqueue:bool:1' \ - 'cpu_affinity:bool:1' \ 'proto:string' \ 'localip:string' \ 'remoteip:string' } -# New function for CPU core optimization -optimize_cpu_cores() { - local dev="$1" - local multiqueue="$2" - local cpu_affinity="$3" - - if [ "$cpu_affinity" = "1" ]; then - _log "Setting up CPU affinity for $dev" - if [ -x /usr/sbin/glorytun-irq-affinity.sh ]; then - /usr/sbin/glorytun-irq-affinity.sh - fi - fi - - if [ "$multiqueue" = "1" ]; then - _log "Enabling multiqueue for $dev" - - # Get CPU count - local cpu_count=$(grep -c processor /proc/cpuinfo) - if [ "$cpu_count" -gt 1 ]; then - # Use half of available CPUs but at least 2 - local queue_count=$(( cpu_count / 2 )) - [ "$queue_count" -lt 2 ] && queue_count=2 - - # Set multiqueue parameters - ip link set dev "$dev" multiqueue on - - # Increase buffer sizes for better performance - if [ -e /proc/sys/net/core/rmem_max ]; then - echo 16777216 > /proc/sys/net/core/rmem_max - echo 16777216 > /proc/sys/net/core/wmem_max - echo 16777216 > /proc/sys/net/core/optmem_max - fi - fi - fi -} - start_instance() { - local enable key host port dev mptcp proto chacha20 mode multiqueue cpu_affinity timeout localip remoteip + local enable key host port dev mptcp proto chacha20 mode multiqueue timeout localip remoteip local key_dir="/var/run/${PROG_NAME}" local key_file="${key_dir}/${1}.key" @@ -91,9 +46,6 @@ start_instance() { } [ "${enable}" = "1" ] || return 1 - - apply_sysctl_optimizations - [ "${proto}" = "tcp" ] || return 1 [ -n "${key}" ] || { _err "Key empty" @@ -147,25 +99,23 @@ start_instance() { procd_set_param stderr 1 procd_close_instance - - # Apply CPU optimizations after the instance is started - optimize_cpu_cores "$dev" "$multiqueue" "$cpu_affinity" - - # Configure interface IP addresses + + # Configure the tunnel addresses once glorytun has created the device. + # RPS/XPS steering for it is set by /etc/hotplug.d/net/20-rps-xps + # (openmptcprouter package), which handles every interface. if [ -n "$localip" ] && [ -n "$remoteip" ]; then - ( - # Wait for device to be created - local count=0 - while [ $count -lt 10 ]; do - if ip link show "$dev" >/dev/null 2>&1; then - ifconfig "$dev" "$localip" pointopoint "$remoteip" up && \ - _log "Configured $dev with IP $localip peer $remoteip" - break - fi - sleep 1 - count=$((count + 1)) - done - ) & + ( + count=0 + while [ $count -lt 10 ]; do + if [ -d "/sys/class/net/$dev" ]; then + ifconfig "$dev" "$localip" pointopoint "$remoteip" up && \ + _log "Configured $dev with IP $localip peer $remoteip" + break + fi + sleep 1 + count=$((count + 1)) + done + ) & fi } diff --git a/kaiplus/Makefile b/kaiplus/Makefile index dbebd1a1..632c180f 100644 --- a/kaiplus/Makefile +++ b/kaiplus/Makefile @@ -9,8 +9,8 @@ include $(TOPDIR)/rules.mk PKG_ARCH_kaiplus:=$(ARCH) PKG_NAME:=kaiplus -PKG_VERSION:=linkeasefull-runtime-v3.0.17 -PKG_RELEASE:=9 +PKG_VERSION:=kaiplus-runtime-v1.0.7 +PKG_RELEASE:=10 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/kaiplus-runtime-v$(PKG_VERSION)/ PKG_HASH:=skip diff --git a/kaiplus/files/kaiplus-plugin.json b/kaiplus/files/kaiplus-plugin.json index d60cb427..e94e0cb5 100644 --- a/kaiplus/files/kaiplus-plugin.json +++ b/kaiplus/files/kaiplus-plugin.json @@ -11,7 +11,8 @@ }, "standalone": { "entry": "index.html", - "basePath": "/apps/kaiplus/" + "basePath": "/apps/kaiplus/", + "url": "/apps/kaiplus/" }, "config": { "providerOrder": ["uci"], diff --git a/kaiplus/files/kaiplus.config b/kaiplus/files/kaiplus.config index 5a2272f0..232a7462 100644 --- a/kaiplus/files/kaiplus.config +++ b/kaiplus/files/kaiplus.config @@ -8,3 +8,4 @@ config kaiplus option 'bind_addr' '0.0.0.0' option 'base_path' '/apps/kaiplus/' option 'system_role' 'istoreos' + option 'auth_mode' 'disabled' diff --git a/kaiplus/files/kaiplus.init b/kaiplus/files/kaiplus.init index 66c9eb07..309eddca 100644 --- a/kaiplus/files/kaiplus.init +++ b/kaiplus/files/kaiplus.init @@ -13,6 +13,7 @@ get_config() { config_get bind_addr "$1" bind_addr "0.0.0.0" config_get base_path "$1" base_path "/apps/kaiplus/" config_get system_role "$1" system_role "istoreos" + config_get auth_mode "$1" auth_mode "disabled" } mkdir_p() { @@ -58,6 +59,8 @@ start_service() { procd_set_param env \ KAIPLUS_HOME="$data_dir" \ KAIPLUS_SYSTEM_ROLE="$system_role" \ + KAIPLUS_AUTH_MODE="$auth_mode" \ + LINKEASE_AUTH_PROVIDER="$auth_mode" \ KAIPLUS_LISTEN_MODE="tcp" \ KAIPLUS_WORKSPACE_HELPER_DIR="/usr/share/kaiplus/helpers" \ KAIPLUS_WORKSPACE_TOOL_INSTALL_DIR="/tmp/kaiplus_workspace_tool" \ @@ -68,6 +71,8 @@ start_service() { procd_set_param env \ KAIPLUS_HOME="$data_dir" \ KAIPLUS_SYSTEM_ROLE="$system_role" \ + KAIPLUS_AUTH_MODE="$auth_mode" \ + LINKEASE_AUTH_PROVIDER="$auth_mode" \ KAIPLUS_LISTEN_MODE="unix" \ KAIPLUS_SOCKET_PATH="$socket_path" \ KAIPLUS_WORKSPACE_HELPER_DIR="/usr/share/kaiplus/helpers" \ diff --git a/linkease-common-bin/Makefile b/linkease-common-bin/Makefile index a2982cf7..46a0566e 100644 --- a/linkease-common-bin/Makefile +++ b/linkease-common-bin/Makefile @@ -12,7 +12,7 @@ PKG_ARCH_LINKEASE:=$(ARCH) PKG_NAME:=linkease-common-bin # use PKG_SOURCE_DATE instead of PKG_VERSION for compitable PKG_SOURCE_DATE:=1.7.5 -PKG_RELEASE:=27 +PKG_RELEASE:=28 ARCH_HEXCODE:= ifeq ($(ARCH),x86_64) @@ -28,7 +28,7 @@ else ifeq ($(ARCH),mipsel) ARCH_HEXCODE=1b0c endif -PKG_SOURCE_VERSION:=679d98db83ff6708167bcaf8c5c5c0ab5cc2426b +PKG_SOURCE_VERSION:=200705122b651e33ea1affa11fb2f1ea3e8c5899 PKG_SOURCE:=linkease-common-bin-$(PKG_SOURCE_DATE)-linux-$(PKG_ARCH_LINKEASE).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/linkease-runtime-v$(PKG_SOURCE_DATE)/ PKG_BUILD_DIR:=$(BUILD_DIR)/linkease-common-bin-$(PKG_SOURCE_DATE)-linux-$(PKG_ARCH_LINKEASE) diff --git a/linkease/Makefile b/linkease/Makefile index 479ea609..23da09c3 100644 --- a/linkease/Makefile +++ b/linkease/Makefile @@ -12,7 +12,7 @@ PKG_ARCH_LINKEASE:=$(ARCH) PKG_NAME:=linkease # use PKG_SOURCE_DATE instead of PKG_VERSION for compitable PKG_SOURCE_DATE:=1.7.5 -PKG_RELEASE:=30 +PKG_RELEASE:=31 ARCH_HEXCODE:= ifeq ($(ARCH),x86_64) @@ -28,7 +28,7 @@ else ifeq ($(ARCH),mipsel) ARCH_HEXCODE=1b0c endif -PKG_SOURCE_VERSION:=679d98db83ff6708167bcaf8c5c5c0ab5cc2426b +PKG_SOURCE_VERSION:=200705122b651e33ea1affa11fb2f1ea3e8c5899 PKG_SOURCE:=linkease-bin-$(PKG_SOURCE_DATE)-linux-$(PKG_ARCH_LINKEASE).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/linkease-runtime-v$(PKG_SOURCE_DATE)/ PKG_BUILD_DIR:=$(BUILD_DIR)/linkease-bin-$(PKG_SOURCE_DATE)-linux-$(PKG_ARCH_LINKEASE) diff --git a/linkeasefull/Makefile b/linkeasefull/Makefile index 120301b0..b99760c8 100644 --- a/linkeasefull/Makefile +++ b/linkeasefull/Makefile @@ -10,8 +10,8 @@ PKG_ARCH_LINKEASE:=$(ARCH) PKG_NAME:=linkeasefull # use PKG_SOURCE_DATE instead of PKG_VERSION for compitable -PKG_SOURCE_DATE:=3.0.17 -PKG_RELEASE:=29 +PKG_SOURCE_DATE:=3.0.19 +PKG_RELEASE:=30 ARCH_HEXCODE:= ifeq ($(ARCH),x86_64) @@ -24,7 +24,7 @@ LINKEASE_RUNTIME_ARCH:=arm64 PKG_HASH:=skip endif -PKG_SOURCE_VERSION:=679d98db83ff6708167bcaf8c5c5c0ab5cc2426b +PKG_SOURCE_VERSION:=200705122b651e33ea1affa11fb2f1ea3e8c5899 PKG_SOURCE:=linkease-runtime-$(PKG_SOURCE_DATE)-linux-$(LINKEASE_RUNTIME_ARCH).tar.gz PKG_SOURCE_URL:=https://github.com/istoreos/istoreos-app-hub/releases/download/linkeasefull-runtime-v$(PKG_SOURCE_DATE)/ PKG_BUILD_DIR:=$(BUILD_DIR)/linkease-runtime-$(PKG_SOURCE_DATE)-linux-$(LINKEASE_RUNTIME_ARCH) diff --git a/luci-app-frpc/Makefile b/luci-app-frpc/Makefile index c39839ab..51d83b2c 100644 --- a/luci-app-frpc/Makefile +++ b/luci-app-frpc/Makefile @@ -4,6 +4,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for frp client LUCI_DEPENDS:=+luci-base +frpc +LUCI_EXTRA_DEPENDS:=frpc (>=0.71.0-r2) PKG_LICENSE:=Apache-2.0 diff --git a/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js b/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js index 7d53b7a7..6a9af079 100644 --- a/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js +++ b/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js @@ -129,6 +129,16 @@ */ const startupConf = [ + [form.Flag, 'enabled', _('Enable service'), null, + { + enabled: '1', + disabled: '0', + default: '0', + rmempty: false, + retain: true, + remove: writeFlagDisabled + }], + [form.Flag, 'stdout', _('Log stdout'), null, { enabled: '1', diff --git a/luci-app-frpc/po/ar/frpc.po b/luci-app-frpc/po/ar/frpc.po index 5e5cc122..16fbac90 100644 --- a/luci-app-frpc/po/ar/frpc.po +++ b/luci-app-frpc/po/ar/frpc.po @@ -11,95 +11,95 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 5.17.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "الاعدادات الإضافية" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "المصادقة" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "يتم جمع البيانات..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "معطل" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "مفعَّل" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "التعمية" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "الاعدادات العامة" @@ -416,796 +420,796 @@ msgstr "الاعدادات العامة" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "مستوى التسجيل" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "قيد التشغيل" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "عنوان الخادم" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "اسم الخادم" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/az/frpc.po b/luci-app-frpc/po/az/frpc.po index 3eea012c..3c1fcb3b 100644 --- a/luci-app-frpc/po/az/frpc.po +++ b/luci-app-frpc/po/az/frpc.po @@ -7,95 +7,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -103,308 +103,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -412,796 +416,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1209,12 +1213,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/be/frpc.po b/luci-app-frpc/po/be/frpc.po index 4afd584c..07da26a7 100644 --- a/luci-app-frpc/po/be/frpc.po +++ b/luci-app-frpc/po/be/frpc.po @@ -8,95 +8,95 @@ msgstr "" "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" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -104,308 +104,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Уключана" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -413,796 +417,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1210,12 +1214,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/bg/frpc.po b/luci-app-frpc/po/bg/frpc.po index 2718b3e1..803fa67f 100644 --- a/luci-app-frpc/po/bg/frpc.po +++ b/luci-app-frpc/po/bg/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Допълнителни настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Присвоен порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Събиране на данни ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Общи Настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Потребителски домейни" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Забранен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Криптиране" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Общи настройки" @@ -415,796 +419,796 @@ msgstr "Общи настройки" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Локалнен IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Локален порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Ниво на записи" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "НЕ СЕ ИЗПЪЛНЯВА" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "РАБОТИ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/bn_BD/frpc.po b/luci-app-frpc/po/bn_BD/frpc.po index 49dded6b..32d7aaea 100644 --- a/luci-app-frpc/po/bn_BD/frpc.po +++ b/luci-app-frpc/po/bn_BD/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "অতিরিক্ত কনফিগারেশন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "অ্যাসেট ডিরেক্টরি" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "অ্যাড্রেস বাইন্ড করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "বাইন্ড পোর্ট" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "তথ্য সংগ্রহ করা হচ্ছে ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "রঙ্গিন লগ নিষ্ক্রিয় করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "নিষ্ক্রিয়" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "সক্রিয়" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "সাধারণ সেটিংস" @@ -415,796 +419,796 @@ msgstr "সাধারণ সেটিংস" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "হার্টবিট টাইমআউট" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "লগ লেভেল" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "সর্বোচ্চ দিন লগ করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "stderr লগ করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "stdout লগ করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "চলমান না" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "চলমান" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "ক্র্যাশ করলে পুনরুজ্জীবিত করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "গ্রুপ হিসাবে ডেমন চালান" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "ব্যবহারকারী হিসাবে ডেমন চালান" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "টিসিপি মাক্স" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "টোকেন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ca/frpc.po b/luci-app-frpc/po/ca/frpc.po index d8e29a0b..a4054230 100644 --- a/luci-app-frpc/po/ca/frpc.po +++ b/luci-app-frpc/po/ca/frpc.po @@ -11,95 +11,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configuracions addicionals" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avançat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Adreça de vinculació" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Inhabilitat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Encriptatge" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Paràmetres generals" @@ -416,796 +420,796 @@ msgstr "Paràmetres generals" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Nivell de registre" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Executa el servei com a grup" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Executa el dimoni com l'usuari" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/cs/frpc.po b/luci-app-frpc/po/cs/frpc.po index 5714a9a3..1667bbd2 100644 --- a/luci-app-frpc/po/cs/frpc.po +++ b/luci-app-frpc/po/cs/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "Přidat novou proxy nebo návštěvníka…" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "Další parametry koncového bodu OIDC tokenu. použijte klíč=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "Další ověř. rozsahy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "Další klientská metadata. Použijte klíč=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "Další soubory s nastaveními, zahrnuté ze strany frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Další nastavení" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "Další metadata proxy. Použijte klíč=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "Další rozsahy které zahrnout do ověřovací informace." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "Adresa frps serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Pokročilé" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "Povolit uživatele" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "Anotace" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "Anotace zobrazené na frps přehledu. Použijte klíč=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Složka obsahu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "Metoda ověřování se" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "Metoda ověřování se." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "Limit šířky pásma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "Režim limitu šířky pásma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "Limit přenosového pásma, například 1MB." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Adresa, na kterou navázat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Port, na který navázat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "Port pro navázání je vyžadován pro návštěvníky." @@ -106,23 +106,23 @@ msgstr "Port pro navázání je vyžadován pro návštěvníky." msgid "Client" msgstr "Klient" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "Identif. klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "Metadata klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Shromažďování dat …" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "Argumenty příkazu předané vykonání zdroje tokenu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -130,11 +130,11 @@ msgstr "" "Příkaz používaný k získání tokenu. Inicializační skript přidává --allow-" "unsafe=TokenSource Exec, když se tento zdroj používá." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Společná nastavení" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." @@ -142,186 +142,186 @@ msgstr "" "Kolonka kompatibility pro UCI. Sekce serveru jsou vydávány jako položky " "proxy; sekce návštěvníků jsou vydávány jako položky návštěvníků." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "Komprimovat proxy provoz." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Komprese" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "Klíč nastavení: auth.oidc.audience." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "Klíč nastavení: auth.oidc.clientID." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "Klíč nastavení: auth.oidc.clientSecret." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "Klíč nastavení: auth.oidc.scope." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "Klíč nastavení: auth.oidc.tokenEndpointURL." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "Klíč nastavení: log.level." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "Klíč nastavení: plugin.crtPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "Klíč nastavení: plugin.hostHeaderRewrite." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "Klíč nastavení: plugin.httpPassword." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "Klíč nastavení: plugin.httpUser." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "Klíč nastavení: plugin.keyPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "Klíč nastavení: plugin.localPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "Klíč nastavení: plugin.password." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "Klíč nastavení: plugin.stripPrefix." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "Klíč nastavení: plugin.unixPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "Klíč nastavení: plugin.username." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "Klíč nastavení: proxies[].customDomains." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "Klíč nastavení: proxies[].loadBalancer.group." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "Klíč nastavení: proxies[].loadBalancer.groupKey." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "Klíč nastavení: proxies[].subdomain." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Klíč nastavení: transport.quic.keepalivePeriod." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Klíč nastavení: transport.quic.maxIdleTimeout." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Klíč nastavení: transport.quic.maxIncomingStreams." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "Připojit k lokální IP adrese serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "Počet fondů připojení" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "Předem navázaná připojení." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" "Soubor s uživatelsky určeným certifikátem cert. autority pro OIDC koncový " "bod." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "Uživatelsky určený DNS server používaný frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Uživatelsky určené domény" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "DNS server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "Udržování spojení na vytáčecí server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "Časový limit vytáčecího serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "Zakázat NAT asistované adresy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "Zakázat uživatelsky určený TLS první bajt" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" "Zakázat asistované adresy lokálního rozhraní pro XTCP překonávání NAT " "překladu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Neobarvovat záznam událostí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "Při vypisování záznamu událostí na konzoli vypnout jeho obarvování." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Zakázáno" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "Uplatní se pokud je zapnuté XTCP ponechávání tunelu otevřeného." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "Zapnout obsluhy Go pprof ve webovém serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "Zapnout HTTP/2 pro zásuvný modul HTTPS mostu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -329,69 +329,73 @@ msgstr "" "Zapnout HTTPS pro frpc webový server. Tento přepínač ovládá zda jsou " "vydávány webServer.tls.certFile a webServer.tls.keyFile." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "Zapnout multiplexování TCP proudu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" "Zapnout TLS při komunikování s frps. Od verze frp 0.5.0.0 je ve výchozím " "stavu zapnuto." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "Zapnout nebo vypnout tuto proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "Povolit pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "Zapnout webu HTTPS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Povoleno" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "Šifrovat proxy provoz." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Šifrování" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Proměnná prostředí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "Je třeba, aby proměnná prostředí používala formát KLÍČ=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Proměnné prostředí předávané vykonání zdroje tokenu. Použijte KLÍČ=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "Když se první přihlášení nezdaří, ukončit frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "Ukončit když se přihlášení nezdaří" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" "Experimentální omezování funkcí. Použijte klíč=hodnota – například " "VirtualNet=true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -401,31 +405,31 @@ msgstr "" "sekcemi pro proxy a návštěvníky. Použijte frp includes nebo holá nastavení " "pro jednotlivá proxy pro tabulky proxy/návštěvníků." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "Časový limit náhradního (v milisekundách) pro XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "Časový limit náhradního (ms)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "Náhradně použít" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "Náhradní název návštěvníka pro XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "Propagovat brány" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "Pro zásuvný modul virtual_net návštěvník." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Obecná nastavení" @@ -433,140 +437,140 @@ msgstr "Obecná nastavení" msgid "Grant access to LuCI app frpc" msgstr "Udělit přístup k LuCI aplikaci frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / doména" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "Hlavičky kontroly vitality HTTP. Použijte Hlavička=Hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "Popis umístění pro kontrolu vitality HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "Heslo pro HTTP nebo TCPMUX basic auth." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "Uživatelské jméno pro HTTP nebo TCPMUX basic auth." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP heslo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "Je třeba, aby HTTP popis umístění začínal na / (lomítko)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "Kontrola vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "Hlavičky kontroly vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "Interval kontroly vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "Interval kontroly vitality (v sekundách)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "Nejvýše přijatelných nezdarů kontroly vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "Popis umístění pro kontrolu vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" "Pokud je typ kontroly http, je zapotřebí popis umístění pro kontrolu " "vitality." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "Časový limit kontroly vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "Časový limit kontroly vitality (v sekundách)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "Typ kontroly vitality" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "Typ kontroly vitality." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Interval kontroly stavu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "Interval kontroly vitality (v sekundách)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Časový limit kontroly stavu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "Časový limit kontroly stavu (v sekundách)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Přepsání hlavičky hostitel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "Zahrnout soubory s nastaveními" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "Ponechat XTCP tunel otevřený." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "Ponechat tunel otevřený" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "Interval udržování spojení pro TCP mux." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "Rozprostírání zátěže" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "Skupina rozprostírání zátěže" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" "Pokud je nastavený klíč skupiny, je zapotřebí skupina rozprostírání zátěže." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "Klíč skupiny rozprostírání zátěže" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -576,18 +580,18 @@ msgstr "" "exec“ spouští příkaz a vyžaduje frp nebezpečné oprávnění. Není možné použít " "v kombinaci s auth.token." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokální IP adresa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" "Navázání na lokální IP adresu při připojování k frps. Platné pouze pro tcp, " "websocket nebo wss." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -598,671 +602,671 @@ msgstr "" "poté, co frp terminuje externí TLS; pro http2https/htttp2http, se jedná o " "lokální nadřazenou adresu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "Lokální adresa pro navázání pro návštěvníka." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" "Lokální port pro navázání pro návštěvníka. Pokud se chcete vyhnout navázání " "se na, použijte zápornou hodnotu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Lokální port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "IP adresa nebo hostitel lokální služby." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "Port lokální služby." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Umístění" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Nastavení zaznamenávání událostí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Stupeň podrobnosti záznamu událostí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Zaznamenávat nejvýše dnů" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "Výstup záznamu událostí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "Popis umístění výstupu záznamu událostí nebo konzole." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Zaznamenávat standardní chybový výstup" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Zaznamenávat standardní výstup" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "Nejvýše opakovaných pokusů za hodinu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "Za kolik dnů nejvýše uchovávat záznamy událostí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "Metadata" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "Nejmenší interval opakovaného pokusu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "Nejmenší interval XTCP opakovaného pokusu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "Multiplexer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "STUN server NAT prostupu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NESPUŠTĚNÉ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "Další parametry koncového bodu OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "OIDC publikum" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "OIDC identifikátor klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "OIDC tajemství klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "OIDC nezabezpečené přeskočení ověření" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "URL OIDC proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "OIDC rozsah" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "URL koncového bodu OIDC tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "Soubor s důvěryhodnou cert. autoritou pro OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Proměnné prostředí operačního systému předávané frp pro šablonu souboru s " "nastaveními, viz %s." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" "Spouštět pouze uvedené proxy nebo návštěvníky. Nevyplněné znamená spustit " "vše." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "Pro návštěvníky je platný pouze zásuvný modul virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "Platné pouze pro HTTP proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" "Připojit se mohou pouze návštěvníci od uvedených uživatelů. Pokud chcete " "umožnit všechny uživatele, použijte * (hvězdička)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "Volitelný neopakující se identifikátor pro tuto instanci frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "Popis umístění souboru s tokenem." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "Popis umístění soubor s TLS certifikátem." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "Popis umístění souboru s TLS soukromým klíčem." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Popis umístění souboru s certifikátem HTTPS webového serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" "Popis umístění souboru se soukromým klíčem, používaným HTTPS webovým " "serverem." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "Popis umístění souboru s certifikátem důvěryhodné cert. autority." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" "Učinit nastavení pro Web UI nebo správu API ohledně běhové proxy a " "návštěvníka trvalým." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "Použijte formát KLÍČ=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Zásuvný modul" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "Zásuvný modul HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "Popis umístění certifikátu zásuvného modulu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "Přepis hlavičky hostitele zásuvného modulu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "Popis umístění klíče zásuvného modulu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "Lokální adresa zásuvného modulu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "Hlavičky požadavku zásuvného modulu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "Typ zásuvného modulu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "Je třeba, aby port bylo číslo z rozmezí 0 až 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "Je třeba, aby port byl z rozmezí 0 až 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "Je třeba, aby port byl záporný nebo číslo z rozsahu 1 až 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "Je třeba, aby port byl záporný nebo z rozmezí 1 až 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "Port frps serveru. Výchozí je 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" "Předpona pro názvy proxy. Pokud nastaveno, názvy proxy se stanou {user}." "{proxy}." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "Nastavení proxy/návštěvníka" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "URL proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "URL proxy pro koncový bod OIDC tokenu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" "URL proxy sloužící pro připojování k frps. Podporuje http, socks5 a ntlm." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "Metadata proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Název proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "Předpona názvu proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "Verze protokolu proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "Typ proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "Perioda QUIC udržování spojení" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "Časový limit QUIC nejdelší nečinnosti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "Nejvýše umožněných příchozích QUIC proudů" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "SPUŠTĚNÉ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Vzdálený port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" "Vzdálený port na kterém frps očekává spojení. Pokud 0 (nula), frps přiřadí " "náhodný port." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "Po pokračujících nezdarech, odebrat proxy z frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "Hlavičky požadavků" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "V případě pádu spustit znovu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "Hlavičky odpovědí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "Přepsat záhlaví hostitele." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Role" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "Směrovat HTTP nebo TCPMUX požadavky podle HTTP basic auth uživatele." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "Směrovat podle HTTP uživatele" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Spustit proces služby s oprávněními skupiny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Spustit proces služby pod uživatelskými oprávněními" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5 heslo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "STUN server sloužící pro překonávání NAT překladu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "Tajný klíč" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "Tajný klíč používaný STCP/XTCP/SUDP proxy a návštěvníky." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Adresa serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Název serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "Pro návštěvníky je zapotřebí název serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "Název serveru sloužící pro TLS ověřování." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port na serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "Název proxy serveru k navštívení." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "Uživatel serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "Serverový uživatel pro návštěvníka." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "Nastavit hlavičky požadavku. Použijte Hlavička=Hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "Nastavit hlavičky odpovědi. Použijte Hlavička=Hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "Od verze frp 0.50.0 je výchozí zapnuto." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" "Přeskočit TLS ověřování pro OIDC koncový bod. Nedoporučováno pro produkční " "nasazení." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "Spustit proxy / návštěvníky" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Nastavení spouštění" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "Lokální popis umístění statického souboru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "Oříznout předponu statického souboru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "Popis umístění souboru pro ukládání" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Dílčí doména" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" "Interval udržování TCP spojení (v sekundách). Záporná hodnota udržování " "vypíná." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "TCP multiplexer." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "Interval udržování spojení TCP multiplexeru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "Popis umístění TLS certifikátu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Pokud je zapnuté web HTTPS, je zapotřebí popis umístění TLS certifikátu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "Popis umístění soukromého TLS klíče" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "V případě, že je web HTTPS zapnuté, je zapotřebí popisu umístění soukromého " "TLS klíče." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "Název TLS serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "Popis umístění TLS důvěryhodné cert. autority" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "Časový limit (v sekundách) pro připojování k frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "Token a zdroj tokenu není možné použít dohromady." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "Příkaz zdroje tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "Argumenty pro příkaz zdroje tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "Pokud je typ zdroje tokenu vykonat, je zapotřebí příkaz zdroje tokenu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "Prostředí zdroje tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "Soubor zdroje tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "Pokud je typ zdroje tokenu soubor, je zapotřebí popis jeho umístění." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "Typ zdroje tokenu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "Token sloužící pro ověřování se." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "Transport" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "Nastavení transportu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "Transportní protokol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "Transportní protokol používaný pro připojení se k frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "Velikost UDP paketu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" "Velikost UDP paketu (v bajtech). Mělo by se shodovat s frps. Výchozí je 1500." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Popis umístění soketu unixové domény" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "Použijte hlavička=hodnota." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" "Použít proxy protokol pro přenesení informací o spojení na lokální službu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "Virtuální síťová adresa. Vyžaduje bránu funkce VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "VirtualNet adresa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "Cílová IP adresa VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "Pro virtual_net návštěvníky je zapotřebí VirtualNet cílová IP adresa." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Webový server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Adresa webového serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Složka s obsahem webového serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Adresa na kterou webový server navázat." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Heslo k webovému serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Heslo k webovému serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Port webového serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port webového serveru. Pokud ho chcete zakázat, nevyplňujte nebo nastavte na " "0 (nula)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Uživatel webového serveru" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Uživatelské jméno webového serveru." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "Kde omezovat šířku pásma." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "Wire protokol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "Protokol XTCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "Protokol tunelu XTCP návštěvníka." @@ -1270,12 +1274,12 @@ msgstr "Protokol tunelu XTCP návštěvníka." msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp klient" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/da/frpc.po b/luci-app-frpc/po/da/frpc.po index 13582e01..ea57125a 100644 --- a/luci-app-frpc/po/da/frpc.po +++ b/luci-app-frpc/po/da/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Yderligere konfigurationer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avanceret" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Godkendelse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Bind port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Deaktiveret" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Aktiveret" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Generelle indstillinger" @@ -415,796 +419,796 @@ msgstr "Generelle indstillinger" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Log niveau" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "KØRE IKKE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "KØRE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rolle" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Kør dæmon som gruppe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Kør dæmon som bruger" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Serveradresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Servernavn" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Server port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/de/frpc.po b/luci-app-frpc/po/de/frpc.po index 01da2fe1..5b0da7da 100644 --- a/luci-app-frpc/po/de/frpc.po +++ b/luci-app-frpc/po/de/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Zusätzliche Konfiguration" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Erweitert" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Asset-Verzeichnis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Bind-Adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Apps, die Geräteattestierung verwenden" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Sammeln von Daten ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Allgemeine Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Komprimierung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Benutzerdefinierte Domänen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Deaktiviere farbiges Log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Deaktiviert" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Verschlüsselung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Umgebungsvariable" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Allgemeine Einstellungen" @@ -415,153 +419,153 @@ msgstr "Allgemeine Einstellungen" msgid "Grant access to LuCI app frpc" msgstr "Zugriff auf LuCI-App frpc gewähren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP-Passwort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP-User" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Heartbeat-Intervall" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Heartbeat-Timeout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Host-Header umschreiben" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokale IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -572,643 +576,643 @@ msgstr "" "Adresse, die nach Beendigung des externen TLS durch FRP erreichbar ist; bei " "http2https/http2http ist es die lokale Upstream-Adresse." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Lokaler Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Standorte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Protokolleinstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Protokollierungslevel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Maximale Tage protokollieren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Stderr protokollieren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Stdout protokollieren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "LÄUFT NICHT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Plugin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Name des Proxies" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Proxy-Typ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "LÄUFT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Entfernter Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Starte nach Crash neu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rolle" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5-Passwort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5-Benutzer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Server-Adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Servername" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Server-Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Startup-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Unterdomäne" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP-mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Unix-Domänensocketpfad" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1216,12 +1220,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp Client" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/el/frpc.po b/luci-app-frpc/po/el/frpc.po index 37e12c10..5fcfa7ae 100644 --- a/luci-app-frpc/po/el/frpc.po +++ b/luci-app-frpc/po/el/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.8.2\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "προχωρημένο" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Εξουσιοδότηση" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Διεύθυνση στην οποία ακούει η υπηρεσία" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Ενεργοποιήθηκε" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Γενικές ρυθμίσεις" @@ -415,796 +419,796 @@ msgstr "Γενικές ρυθμίσεις" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ΕΚΤΕΛΕΙΤΕ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/eo/frpc.po b/luci-app-frpc/po/eo/frpc.po index 83c83fed..de308139 100644 --- a/luci-app-frpc/po/eo/frpc.po +++ b/luci-app-frpc/po/eo/frpc.po @@ -7,95 +7,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -103,308 +103,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -412,796 +416,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1209,12 +1213,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/es/frpc.po b/luci-app-frpc/po/es/frpc.po index a05f1d16..35d4dbd4 100644 --- a/luci-app-frpc/po/es/frpc.po +++ b/luci-app-frpc/po/es/frpc.po @@ -13,97 +13,97 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "Agregar nuevo proxy o visitante..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" "Parámetros adicionales del punto final del token OIDC. Utilice clave=valor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "Ámbitos de autorización adicionales" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "Metadatos adicionales del cliente. Utilice clave=valor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "Archivos de configuración adicionales incluidos por frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configuraciones adicionales" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" "Se añadirán ámbitos adicionales para incluir información de autenticación." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avanzado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Directorio de activos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Dirección de enlace" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Puerto de enlace" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -111,308 +111,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Recopilando datos..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Configuración común" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Compresión" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Dominios personalizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Desactivar color de registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Desactivado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Cifrado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Variable ambiental" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Configuración general" @@ -420,796 +424,796 @@ msgstr "Configuración general" msgid "Grant access to LuCI app frpc" msgstr "Conceder acceso a la aplicación frpc de LuCI" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Contraseña HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Usuario HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Intervalo de latidos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Tiempo de espera de latidos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Reescritura de encabezado de host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Puerto local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Localizaciones" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Configuración del registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Nivel de registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Máx. días de registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Registro de stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Registro de stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NO SE ESTÁ EJECUTANDO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Complemento" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nombre del proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Tipo del proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "EJECUTÁNDOSE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Puerto remoto" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Reaparecer cuando se estrelló" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Ejecutar demonio como grupo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Ejecutar demonio como usuario" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Contraseña para SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Usuario de SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Dirección del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nombre del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Puerto del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Configuración de inicio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Subdominio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "Multiplexación TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Ruta del socket del dominio Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1217,12 +1221,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "Cliente frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/et/frpc.po b/luci-app-frpc/po/et/frpc.po index ddaa9b06..ba1ea4fd 100644 --- a/luci-app-frpc/po/et/frpc.po +++ b/luci-app-frpc/po/et/frpc.po @@ -7,95 +7,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -103,308 +103,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -412,796 +416,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1209,12 +1213,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/fa/frpc.po b/luci-app-frpc/po/fa/frpc.po index bdb07781..b28495be 100644 --- a/luci-app-frpc/po/fa/frpc.po +++ b/luci-app-frpc/po/fa/frpc.po @@ -12,95 +12,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.15.1\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "پیکربندی‌های اضافی" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "پیشرفته" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "شاخهٔ دارایی‌ها" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "نشانی اتصال" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "درگاه اتصال" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -108,308 +108,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "غیرفعال" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -417,796 +421,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "سطح دسترسی لاگ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "اجرا نمی‌شود" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "در حال اجرا" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1214,12 +1218,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/fi/frpc.po b/luci-app-frpc/po/fi/frpc.po index e6ca5edd..27a18620 100644 --- a/luci-app-frpc/po/fi/frpc.po +++ b/luci-app-frpc/po/fi/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Lisäasetukset" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Todennus" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Sido osoite" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Sido portti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Pois käytöstä" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Otettu käyttöön" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Salaus" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Yleiset asetukset" @@ -415,796 +419,796 @@ msgstr "Yleiset asetukset" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Lokitaso" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "EI KÄYNNISSÄ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "KÄYNNISSÄ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Palvelimen osoite" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Palvelimen nimi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Palvelinportti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/fr/frpc.po b/luci-app-frpc/po/fr/frpc.po index 28d50d4f..f9b9ffba 100644 --- a/luci-app-frpc/po/fr/frpc.po +++ b/luci-app-frpc/po/fr/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configurations supplémentaires" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avancé" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Répertoire des actifs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Lier l'adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Port de liaison" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Récolte de données..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Paramètres communs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Domaines personnalisés" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Désactiver la couleur du journal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Désactivé" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Chiffrement" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Variable d'environnement" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Réglages généraux" @@ -415,796 +419,796 @@ msgstr "Réglages généraux" msgid "Grant access to LuCI app frpc" msgstr "Accorder l'accès à l'application LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Mot de passe HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Utilisateur HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Intervalle des battements cardiaques" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Délai d'expiration du rythme cardiaque" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Réécriture de l'en-tête de l'hôte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP locale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Emplacements" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Niveau de journalisation" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Journal max jours" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NON-EXÉCUTANT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nom du proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Type de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "EXÉCUTION" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Port distant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Réapparaître en cas de crash" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rôle" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Exécuter le démon en tant que groupe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Exécuter le démon en tant qu'utilisateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Mot de passe SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 utilisateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Adresse du serveur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nom du serveur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port serveur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Paramètres de démarrage" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Sous-domaine" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Chemin de socket de domaine Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ga/frpc.po b/luci-app-frpc/po/ga/frpc.po index 0d74158a..3d4a25f9 100644 --- a/luci-app-frpc/po/ga/frpc.po +++ b/luci-app-frpc/po/ga/frpc.po @@ -11,95 +11,95 @@ msgstr "" "6 && n<11) ? 3 : 4;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "Cuir seachfhreastalaí nó cuairteoir nua leis..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "Paraiméadair chríochphointe breise chomhartha OIDC. Úsáid key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "Scóip údaraithe breise" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "Meiteashonraí breise cliant. Úsáid key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "Comhaid chumraíochta breise curtha san áireamh ag frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Cumraíochtaí breise" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "Meiteashonraí seachfhreastalaí breise. Úsáid key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "Raointe breise chun faisnéis fíordheimhnithe a áireamh." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "Seoladh an fhreastalaí frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Ardleibhéil" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "Ceadaigh úsáideoirí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "Anótálacha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "Taispeántar nótaí ar phainéal frps. Úsáid key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Sócmhainní dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Fíordheimhniú" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "Modh fíordheimhnithe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "Modh fíordheimhnithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "Teorainn bandaleithead" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "Mód teorainn bandaleithead" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "Teorainn bandaleithead, mar shampla 1MB." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Seoladh ceangail" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Port ceangail" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "Tá port ceangail ag teastáil do chuairteoirí." @@ -107,23 +107,23 @@ msgstr "Tá port ceangail ag teastáil do chuairteoirí." msgid "Client" msgstr "Cliant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "Aitheantas Cliant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "Meiteashonraí cliant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Ag bailiú sonraí ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "Argóintí ordaithe curtha chuig feidhmchláir foinse an chomhartha." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -131,11 +131,11 @@ msgstr "" "An t-ordú a úsáideadh chun an comhartha a fháil. Cuireann an script init --" "allow-unsafe=TokenSourceExec leis nuair a úsáidtear an cineál foinse seo." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Socruithe Coitianta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." @@ -143,186 +143,186 @@ msgstr "" "Réimse comhoiriúnachta do UCI. Aistrítear rannóga freastalaí mar iontrálacha " "seachfhreastalaí; aistrítear rannóga cuairteoirí mar iontrálacha cuairteoirí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "Comhbhrúigh trácht seachfhreastalaí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Comhbhrú" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "Eochair chumraíochta: auth.oidc.audience." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "Eochair chumraíochta: auth.oidc.clientID." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "Eochair chumraíochta: auth.oidc.clientSecret." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "Eochair chumraíochta: auth.oidc.scope." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "Eochair chumraíochta: auth.oidc.tokenEndpointURL." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "Eochair chumraíochta: log.level." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "Eochair chumraíochta: plugin.crtPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "Eochair chumraíochta: plugin.hostHeaderRewrite." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "Eochair chumraíochta: plugin.httpPassword." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "Eochair chumraíochta: plugin.httpUser." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "Eochair chumraíochta: plugin.keyPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "Eochair chumraíochta: plugin.localPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "Eochair chumraíochta: plugin.password." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "Eochair chumraíochta: plugin.stripPrefix." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "Eochair chumraíochta: plugin.unixPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "Eochair chumraíochta: plugin.username." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "Eochair chumraíochta: proxies[].customDomains." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "Eochair chumraíochta: proxies[].loadBalancer.group." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "Eochair chumraíochta: proxies[].loadBalancer.groupKey." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "Eochair chumraíochta: proxies[].subdomain." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Eochair chumraíochta: transport.quic.keepalivePeriod." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Eochair chumraíochta: transport.quic.maxIdleTimeout." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Eochair chumraíochta: transport.quic.maxIncomingStreams." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "Ceangail IP áitiúil an fhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "Líon linnte nasc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "Naisc bunaithe roimh ré." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "Comhad deimhnithe CA saincheaptha do chríochphointe OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "Freastalaí DNS saincheaptha a úsáideann frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Fearainn saincheaptha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "Freastalaí DNS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "Coinnigh an freastalaí Diailigh beo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "Am scoir an fhreastalaí diailithe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "Díchumasaigh seoltaí le cúnamh NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "Díchumasaigh an chéad bheart TLS saincheaptha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" "Díchumasaigh seoltaí le cúnamh comhéadain áitiúil le haghaidh trasnú NAT " "XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Díchumasaigh dath an loga" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "Díchumasaigh dathanna loga nuair a bhíonn aschur loga sa chonsól." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Míchumasaithe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" "Éifeachtach nuair a bhíonn XTCP chun an tollán a choinneáil ar oscailt " "cumasaithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "Cumasaigh láimhseálaithe Go pprof sa fhreastalaí gréasáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "Cumasaigh HTTP/2 le haghaidh breiseáin droichid HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -330,68 +330,72 @@ msgstr "" "Cumasaigh HTTPS don fhreastalaí gréasáin frpc. Rialaíonn an lasc seo an " "astaítear webServer.tls.certFile agus webServer.tls.keyFile." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "Cumasaigh ilphléacsú srutha TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" "Cumasaigh TLS agus tú ag cumarsáid le frps. Ó frp v0.50.0, is fíor an " "réamhshocrú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "Cumasaigh nó díchumasaigh an seachfhreastalaí seo." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "Cumasaigh pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "Cumasaigh HTTPS gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Cumasaithe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "Criptigh trácht seachfhreastalaí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Criptiú" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Athróg timpeallachta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "Ní mór don athróg timpeallachta an fhormáid KEY=value a úsáid." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Athróga timpeallachta a chuirtear chuig feidhmchláir foinse an chomhartha. " "Úsáid KEY=luach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "Scoir frpc nuair a theipeann ar an gcéad logáil isteach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "Scoir nuair a theipeann ar logáil isteach" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "Geataí gné turgnamhacha. Úsáid key=value, mar shampla VirtualNet=true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -402,31 +406,31 @@ msgstr "" "socruithe amh in aghaidh an seachfhreastalaí nó as na socruithe in aghaidh " "an seachfhreastalaí le haghaidh táblaí seachfhreastalaí/cuairteoirí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "Am scoir taca i milleasoicindí le haghaidh XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "Am críochnaithe ms" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "Cúltaca chuig" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "Ainm cuairteora taca le haghaidh XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "Geataí gné" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "Don bhreiseán cuairteoirí virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Socruithe Ginearálta" @@ -434,141 +438,141 @@ msgstr "Socruithe Ginearálta" msgid "Grant access to LuCI app frpc" msgstr "Deonaigh rochtain ar app LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / Fearann" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "Ceanntásca seiceála sláinte HTTP. Úsáid Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "Cosán seiceála sláinte HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "Pasfhocal údaraithe bunúsach HTTP nó TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "Ainm úsáideora údaraithe bunúsach HTTP nó TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Pasfhocal HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "Ní mór do chonair HTTP tosú le /." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Úsáideoir HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "Seiceáil Sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "Ceanntásca seiceála sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "Eatramh seiceála sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "Eatramh seiceála sláinte i soicindí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "Theip ar an uas-sheiceáil sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "Cosán seiceála sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" "Tá cosán seiceála sláinte ag teastáil nuair is é http an cineál seiceála " "sláinte." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "Am scoir seiceála sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "Am críochnaithe seiceála sláinte i soicindí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "Cineál seiceála sláinte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "Cineál seiceála sláinte." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Eatramh buille croí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "Eatramh buille croí i soicindí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Teorainn ama buille croí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "Am scoir buille croí i soicindí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Athscríobh ceanntásc an óstaigh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "Cuir comhaid chumraíochta san áireamh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "Coinnigh tollán XTCP ar oscailt." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "Coinnigh an tollán ar oscailt" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "Eatramh coinnigh beo le haghaidh TCP mux." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "Cothromóir Ualaigh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "Grúpa cothromóra ualaigh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" "Tá grúpa cothromóra ualaigh ag teastáil nuair a bhíonn eochair ghrúpa " "socraithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "Eochair ghrúpa cothromóra ualaigh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -578,18 +582,18 @@ msgstr "" "chomhad áitiúil; ritheann exec ordú agus éilíonn sé cead neamhshábháilte " "frp. Eisiatach go frithpháirteach le auth.token." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP Áitiúil" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" "IP áitiúil ceangailte agus ceangal á dhéanamh le frps. Bailí le haghaidh " "tcp, websocket nó wss amháin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -600,679 +604,679 @@ msgstr "" "shroichtear tar éis do frp deireadh a chur le TLS seachtrach; i gcás " "http2https/http2http, is é an seoladh áitiúil uas-srutha é." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "Seoladh ceangail áitiúil don chuairteoir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" "Port ceangail áitiúil don chuairteoir. Úsáid luach diúltach chun ceangal a " "sheachaint." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Port áitiúil" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "IP nó óstach seirbhíse áitiúil." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "Calafort seirbhíse áitiúil." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Suímh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Socruithe Logála" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Leibhéal loga" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Íoslódáil max laethanta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "Aschur loga" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "Cosán aschuir nó consól logála." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Logáil isteach stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Logáil isteach stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "Uasmhéid athiarracht san uair" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "Uasmhéid laethanta chun logaí a choinneáil." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "Meiteashonraí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "Eatramh íosta athiarrachta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "Eatramh íosta athiarrachta XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "Ilphléacsóir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "Freastalaí STUN poll NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NÍL AG RITH" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "Paraiméadair chríochphointe breise OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "Lucht féachana OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "Aitheantas cliant OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "Rún cliant OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "Fíorú scipeála neamhshábháilte OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "URL seachfhreastalaí OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "Raon feidhme OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "URL críochphointe comhartha OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "Comhad CA iontaofa OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Timpeallachtaí OS curtha chuig frp le haghaidh teimpléad comhaid " "chumraíochta, féach %s." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" "Ná cuir tús ach le seachfhreastalaithe nó cuairteoirí sonraithe. Ciallaíonn " "folamh go gcuirfí tús le gach ceann." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "Níl ach an breiseán virtual_net bailí do chuairteoirí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "Bailí le haghaidh seachfhreastalaí HTTP amháin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" "Ní féidir ach le cuairteoirí ó úsáideoirí sonraithe ceangal. Úsáid * chun " "gach úsáideoir a cheadú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "Aitheantóir uathúil roghnach don chás frpc seo." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "Cosán an chomhaid chomhartha." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "Cosán chuig an gcomhad deimhnithe TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "Cosán chuig an gcomhad eochrach príobháideach TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" "Cosán chuig an gcomhad deimhnithe a úsáideann an freastalaí gréasáin HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" "Cosán chuig an gcomhad eochrach príobháideach a úsáideann an freastalaí " "gréasáin HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "Cosán chuig an gcomhad deimhnithe Údaráis Deimhnithe iontaofa." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" "Coinnigh cumraíocht seachfhreastalaí agus cuairteoirí ag am rith le haghaidh " "bainistíocht Chomhéadan Úsáideora Gréasáin nó API." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "Bain úsáid as an bhformáid KEY=value le do thoil." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Breiseán" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "Breiseán HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "Cosán deimhnithe breiseáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "Athscríobh ceanntásc óstach breiseáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "Cosán eochrach breiseáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "Seoladh áitiúil an bhreiseáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "Ceanntásca iarratais breiseán" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "Cineál breiseáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "Ní mór don phort a bheith ina uimhir idir 0 agus 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "Caithfidh an port a bheith idir 0 agus 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "Ní mór don phort a bheith diúltach nó uimhir idir 1 agus 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "Ní mór don phort a bheith diúltach nó idir 1 agus 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "Port an fhreastalaí frps. Is é 7000 an réamhshocrú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" "Réimír d'ainmneacha seachfhreastalaithe. Má shocraítear é, is iad {user}." "{proxy} na hainmneacha seachfhreastalaithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "Socruithe Seachfhreastalaí / Cuairteoirí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "URL seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "URL seachfhreastalaí do chríochphointe comhartha OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" "URL seachfhreastalaí a úsáidtear chun ceangal le frps. Tacaíonn sé le http, " "socks5 agus ntlm." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "Meiteashonraí seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Ainm seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "Réimír ainm seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "Leagan prótacail seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Cineál seachfhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "Cineál seachfhreastalaí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "Tréimhse choinneála QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "Uasmhéid ama díomhaoin QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "Uasmhéid sruthanna isteach QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "AG RITH" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Port cianda" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "Éisteann frps le port cianda. Más 0 é, sannann frps port randamach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "Bain seachfhreastalaí as frps tar éis teipeanna leanúnacha." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "Ceanntásca iarratais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Respawn nuair a tuairteála" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "Ceanntásca freagartha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "Athscríobh ceanntásc an Óstaigh." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Ról" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "Seol iarratais HTTP nó TCPMUX ag úsáideoir údaraithe bunúsach HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "Bealach ag úsáideoir HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Rith deamhan mar ghrúpa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Rith deamhan mar úsáideoir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Pasfhocal SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 úsáideora" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "Freastalaí STUN a úsáidtear le haghaidh trasnú NAT." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "Eochair rúnda" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" "Eochair rúnda a úsáideann seachfhreastalaithe STCP/XTCP/SUDP agus " "cuairteoirí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Seoladh an fhreastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Ainm freastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "Tá ainm an fhreastalaí ag teastáil do chuairteoirí." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "Ainm an fhreastalaí a úsáidtear le haghaidh fíorú TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port freastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "Ainm seachfhreastalaí freastalaí le cuairt a thabhairt air." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "Úsáideoir freastalaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "Úsáideoir freastalaí don chuairteoir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "Socraigh ceanntásca iarratais. Úsáid Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "Socraigh ceanntásca freagartha. Úsáid Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "Ó frp v0.50.0, is fíor an réamhshocrú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" "Seachain fíorú TLS le haghaidh críochphointe OIDC. Ní mholtar é le haghaidh " "táirgeachta." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "Tosaigh seachfhreastalaithe / cuairteoirí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Socruithe Tosaithe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "Cosán áitiúil comhaid statach" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "Réimír stiall comhaid statach" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "Stóráil cosán comhaid" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Fofhearann" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" "Eatramh coinneála TCP i soicindí. Díchumasaíonn luach diúltach an coinneáil " "beo." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "Ilphléacsóir TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "Eatramh coinneála beo TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "Cosán deimhnithe TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Tá cosán deimhnithe TLS ag teastáil nuair a bhíonn HTTPS gréasáin cumasaithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "Cosán eochrach príobháideach TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "Tá cosán eochrach príobháideach TLS ag teastáil nuair a bhíonn HTTPS " "gréasáin cumasaithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "Ainm freastalaí TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "Cosán iontaofa TLS CA" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "Am críochnaithe i soicindí le haghaidh ceangal le frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Comhartha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "Tá comhartha agus foinse comhartha eisiach dá chéile." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "Ordú foinse comharthaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "Argóintí ordaithe foinse chomhartha" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" "Tá an t-ordú foinse comhartha ag teastáil nuair is é an cineál foinse " "comhartha exec." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "Timpeallacht foinse comharthaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "Comhad foinse comharthaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" "Tá cosán comhaid foinse an chomhartha ag teastáil nuair is comhad an cineál " "foinse comhartha." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "Cineál foinse comharthaí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "Comhartha a úsáidtear le haghaidh fíordheimhnithe." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "Iompar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "Socruithe Iompair" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "Prótacal iompair" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "Prótacal iompair a úsáidtear chun ceangal le frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "Méid an phaicéid UDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" "Méid an phaicéid UDP i mbéiteanna. Ba chóir go mbeadh sé mar an gcéanna le " "frps. Is é 1500 an réamhshocrú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Conair soicéad fearainn Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "Úsáid Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" "Úsáid prótacal seachfhreastalaí chun faisnéis nasc a aistriú chuig seirbhís " "áitiúil." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "Seoladh líonra fíorúil. Éilíonn sé geata gné VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "Seoladh VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "IP ceann scríbe VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "Tá IP ceann scríbe VirtualNet ag teastáil do chuairteoirí virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Freastalaí Gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Seoladh freastalaí gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Eolaire sócmhainní freastalaí gréasáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Seoladh ceangail freastalaí gréasáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Pasfhocal freastalaí gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Pasfhocal freastalaí gréasáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Port freastalaí gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port freastalaí gréasáin. Fág folamh nó socraigh go 0 chun an freastalaí " "gréasáin a dhíchumasú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Úsáideoir freastalaí gréasáin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Ainm úsáideora an fhreastalaí gréasáin." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "Cá háit le bandaleithead a theorannú." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "Prótacal sreinge" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "Prótacal XTCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "Prótacal tollán cuairteoirí XTCP." @@ -1280,12 +1284,12 @@ msgstr "Prótacal tollán cuairteoirí XTCP." msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp Cliant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/he/frpc.po b/luci-app-frpc/po/he/frpc.po index 8878ebc4..768da864 100644 --- a/luci-app-frpc/po/he/frpc.po +++ b/luci-app-frpc/po/he/frpc.po @@ -11,95 +11,95 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "אימות" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "פעילה" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "הצפנה" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "הגדרות כלליות" @@ -416,796 +420,796 @@ msgstr "הגדרות כלליות" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/hi/frpc.po b/luci-app-frpc/po/hi/frpc.po index 28263d79..9bcd2742 100644 --- a/luci-app-frpc/po/hi/frpc.po +++ b/luci-app-frpc/po/hi/frpc.po @@ -4,95 +4,95 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -100,308 +100,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "सक्रिय" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -409,796 +413,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1206,12 +1210,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/hu/frpc.po b/luci-app-frpc/po/hu/frpc.po index 762318c2..b586de76 100644 --- a/luci-app-frpc/po/hu/frpc.po +++ b/luci-app-frpc/po/hu/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "További konfigurációk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Speciális" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Cím kötése" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Adatgyűjtés..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Általános Beállítások" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Tömörítés" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Egyedi domainek" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Színek kikapcsolása a naplóban" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Letiltva" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Titkosítás" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Környezeti változó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Általános beállítások" @@ -415,796 +419,796 @@ msgstr "Általános beállítások" msgid "Grant access to LuCI app frpc" msgstr "Hozzáférés engedélyezése a frpc LuCI alkalmazáshoz" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP jelszó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokális IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Helyi port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Naplózás szintje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NEM FUT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "FUT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Szerep" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Démon futtatása csoportként" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Démon futtatása felhasználóként" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Kiszolgáló címe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Kiszolgáló neve" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Kiszolgáló port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/it/frpc.po b/luci-app-frpc/po/it/frpc.po index 0fa682b9..dc515fec 100644 --- a/luci-app-frpc/po/it/frpc.po +++ b/luci-app-frpc/po/it/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configurazioni aggiuntive" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avanzato" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Attività dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Associa indirizzo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "collega porta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Caricamento dei dati in corso..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Impostazioni Comuni" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Disattivato" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Abilita" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Crittografia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Impostazioni Generali" @@ -415,796 +419,796 @@ msgstr "Impostazioni Generali" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Porta locale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Impostazioni log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Livello dei log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NON IN ESECUZIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "IN ESECUZIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Esegui il demone come utente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Indirizzo del server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nome del server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Porta del server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ja/frpc.po b/luci-app-frpc/po/ja/frpc.po index 1163d6fc..727a02ec 100644 --- a/luci-app-frpc/po/ja/frpc.po +++ b/luci-app-frpc/po/ja/frpc.po @@ -11,95 +11,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "追加の構成" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "詳細設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "認証" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "バインドするIPアドレス" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "バインドするポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "共通設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "圧縮" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "ログの色を無効にする" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "無効" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "有効" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "暗号化" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "環境変数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "一般設定" @@ -416,796 +420,796 @@ msgstr "一般設定" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP パスワード" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP ユーザー" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "ハートビート間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "ハートビート・タイムアウト" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "ローカル IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "ローカル・ポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "ログレベル" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "停止中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "実行中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "役割" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "デーモンをグループとして実行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "デーモンをユーザーとして実行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "サーバー アドレス" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "サーバー名" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "サーバーのポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "トークン" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ko/frpc.po b/luci-app-frpc/po/ko/frpc.po index 35ed1b7a..0467e8c9 100644 --- a/luci-app-frpc/po/ko/frpc.po +++ b/luci-app-frpc/po/ko/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.17.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "추가 설정" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "고급" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "인증" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "바인드 주소" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "바인드 포트" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "데이터 수집 중 ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "일반 설정" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "사용자 정의 도메인" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "비활성화" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "활성화" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "암호화" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "환경 변수" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "일반 설정" @@ -415,796 +419,796 @@ msgstr "일반 설정" msgid "Grant access to LuCI app frpc" msgstr "LuCI 앱 frpc에 접근 권한 부여" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "로컬 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "로컬 포트" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "로그 설정" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "로그 수준" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "표준 오류(stderr) 기록" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "표준 출력(stdout) 기록" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "중지됨" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "플러그인" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "실행 중" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "원격 포트" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "충돌 시 자동 재시작" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "역할" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "데몬 실행 그룹" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "데몬 실행 사용자" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "서버 주소" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "서버 이름" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "서버 포트" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "시작 설정" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "하위 도메인" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "토큰" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/lo/frpc.po b/luci-app-frpc/po/lo/frpc.po index 0c69a6e1..23705d4d 100644 --- a/luci-app-frpc/po/lo/frpc.po +++ b/luci-app-frpc/po/lo/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.17.1\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "ການຕັ້ງຄ່າເພີ່ມເຕີມ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "ຂັ້ນສູງ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "ໄດເຣັກທໍຣີຊັບສິນ (Assets)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "ການຢືນຢັນຕົວຕົນ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "ທີ່ຢູ່ການເຊື່ອມຕໍ່ (Bind address)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "ພອດການເຊື່ອມຕໍ່ (Bind port)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "ກຳລັງເກັບຂໍ້ມູນ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "ການຕັ້ງຄ່າທົ່ວໄປ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "ການບີບອັດ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "ໂດເມນກຳນົດເອງ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "ປິດການໃຊ້ງານສີໃນ Log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "ປິດໃຊ້ງານ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "ເປີດໃຊ້ງານ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "ການເຂົ້າລະຫັດ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "ຕົວແປສະພາບແວດລ້ອມ (Environment variable)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "ການຕັ້ງຄ່າທົ່ວໄປ" @@ -415,796 +419,796 @@ msgstr "ການຕັ້ງຄ່າທົ່ວໄປ" msgid "Grant access to LuCI app frpc" msgstr "ໃຫ້ສິດເຂົ້າເຖິງແອັບ LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "ລະຫັດຜ່ານ HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "ຜູ້ໃຊ້ HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "ໄລຍະເວລາ Heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "ເວລາໝົດກຳນົດ Heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "ຂຽນ Host header ຄືນໃໝ່" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP ພາຍໃນ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "ພອດພາຍໃນ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "ຕຳແໜ່ງ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "ການຕັ້ງຄ່າບັນທຶກ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "ລະດັບການບັນທຶກ (Log)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "ຈຳນວນມື້ສູງສຸດຂອງ Log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "ບໍ່ໄດ້ເຮັດວຽກ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "ປລັກອິນ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "ຊື່ພຣັອກຊີ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "ປະເພດພຣັອກຊີ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ກຳລັງເຮັດວຽກ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "ພອດທາງໄກ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "ເລີ່ມການເຮັດວຽກໃໝ່ເມື່ອຂັດຂ້ອງ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "ບົດບາດ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "ແລ່ນ daemon ໃນຖານະກຸ່ມ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "ແລ່ນ daemon ໃນຖານະຜູ້ໃຊ້" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "ລະຫັດຜ່ານ SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "ຜູ້ໃຊ້ SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "ທີ່ຢູ່ເຊີເວີ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "ຊື່ເຊີເວີ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "ພອດເຊີເວີ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "ການຕັ້ງຄ່າເລີ່ມຕົ້ນລະບົບ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "ໂດເມນຍ່ອຍ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "ໂທເຄັນ (Token)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "ເສັ້ນທາງ Unix domain socket" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "ໄຄລ໌ແອນ frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/lt/frpc.po b/luci-app-frpc/po/lt/frpc.po index 4643de44..bb66df1f 100644 --- a/luci-app-frpc/po/lt/frpc.po +++ b/luci-app-frpc/po/lt/frpc.po @@ -13,95 +13,95 @@ msgstr "" "(n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.17.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Papildomi konfigūravimai" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Pažangūs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "„Assets“ katalogas/vietovė" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autentifikavimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Pririšti adresą" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Pririšti prievadą" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -109,308 +109,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Renkami duomenys..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Tipiniai nustatymai" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Suspaudimas/Suglaudimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Pasirinktiniai domenai-sritys" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Išjungti žurnalo spalvą" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Išjungta/Neįgalinta (-s/-i)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Įjungta/Įgalinta (-s/-i)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Šifravimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Aplinkybių kintamumas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Bendri nustatymai" @@ -418,796 +422,796 @@ msgstr "Bendri nustatymai" msgid "Grant access to LuCI app frpc" msgstr "Suteikti prieigą prie „LuCI“ programos – „frpc“" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "„HTTP“ slaptažodis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "„HTTP“ naudotojas/vartotojas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "„Širdies ritmo“ intervalas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "„Širdies ritmo“ pasibaigusios užklausos laikas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Skleidėjo/Vedėjo antraštės perrašymas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Vietinis IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Vietinis prievadas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Vietovės" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Žurnalo nustatymai" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Žurnalo lygis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Maksimalus dienų žurnalinimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Žurnalinti „stderr“" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Žurnalinti „stdout“" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NEVEIKIA" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Plėtinys" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Įgaliotojo pavadinimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Įgaliojimo tipas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "VEIKIA" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Nuotolinis prievadas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Atkurti/Perjungti (vardžiuojamai: „Atgimti“), kai užstringa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Vaidmuo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Vykdyti „daemon“ kaip grupę" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Vykdyti paslaugų teikimo sistema kaip naudotojas/vartotojas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "„SOCKS5“ slaptažodis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "„SOCKS5“ naudotojas/vartotojas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Serverio adresas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Serverio pavadinimas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Serverio prievadas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Paleidimo nustatymai" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Sub-domenas/sritis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "„TCP“ tankintuvas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "„TLS“" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Žetonas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "„Unix“ domeno-srities lizdo kelias" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1215,12 +1219,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "„frp“ klientas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/mr/frpc.po b/luci-app-frpc/po/mr/frpc.po index 24af71fc..8b44255f 100644 --- a/luci-app-frpc/po/mr/frpc.po +++ b/luci-app-frpc/po/mr/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "अतिरिक्त कॉन्फिगरेशन" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "अक्षम" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "सक्षम केले" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "सामान्य सेटिंग्ज" @@ -415,796 +419,796 @@ msgstr "सामान्य सेटिंग्ज" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ms/frpc.po b/luci-app-frpc/po/ms/frpc.po index 81b5bb33..7f8e8bca 100644 --- a/luci-app-frpc/po/ms/frpc.po +++ b/luci-app-frpc/po/ms/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.11.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Konfig tambahan" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Lanjutan" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Dibolehkan" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Penyulitan" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -415,796 +419,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/nb_NO/frpc.po b/luci-app-frpc/po/nb_NO/frpc.po index 5753d542..8adc6f5a 100644 --- a/luci-app-frpc/po/nb_NO/frpc.po +++ b/luci-app-frpc/po/nb_NO/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.11-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Ytterligere oppsett" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avansert" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Godkjenning" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Bind-adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Bind-port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Samler data …" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Egendefinerte domener" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Avskrudd" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Påskrudd" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Generelle innstillinger" @@ -415,796 +419,796 @@ msgstr "Generelle innstillinger" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokal IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Lokal port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Loggingsnivå" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "Kjører ikke" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "KJØRER" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Kjør nisse som gruppe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Kjør nisse som bruker" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Tjeneradresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Tjenerport" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Oppstartsinnstillinger" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Underdomene" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Symbol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/nl/frpc.po b/luci-app-frpc/po/nl/frpc.po index f342e6f2..c0d6b5d6 100644 --- a/luci-app-frpc/po/nl/frpc.po +++ b/luci-app-frpc/po/nl/frpc.po @@ -12,95 +12,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.15.1\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Additionele configuraties" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Geavanceerd" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Authenticatie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Bind poort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -108,308 +108,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Verzamelen gegevens ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Uitgeschakeld" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Ingeschakeld" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Versleuteling" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Algemene instellingen" @@ -417,796 +421,796 @@ msgstr "Algemene instellingen" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Logboek instellingen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Logboek niveau" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NIET ACTIEF" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ACTIEF" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Voer daemon uit als groep" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Voer daemon uit als gebruiker" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Server adres" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Servernaam" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Server poort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1214,12 +1218,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/pl/frpc.po b/luci-app-frpc/po/pl/frpc.po index 81099891..f3c55840 100644 --- a/luci-app-frpc/po/pl/frpc.po +++ b/luci-app-frpc/po/pl/frpc.po @@ -11,95 +11,95 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "Dodaj nowy wpis typu proxy lub visitor..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "Dodatkowe parametry punktu końcowego tokena OIDC. Użyj klucz=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "Dodatkowe zakresy autoryzacji" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "Dodatkowe metadane klienta. Użyj klucz=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "Dodatkowe pliki konfiguracyjne dołączone przez frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Dodatkowe konfiguracje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "Dodatkowe metadane serwera proxy. Użyj klucz=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "Dodatkowe zakresy do uwzględnienia informacji uwierzytelniających." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "Adres serwera frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Zaawansowane" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "Dozwoleni użytkownicy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "Adnotacje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "Adnotacje wyświetlane na pulpicie frps. Użyj klucz=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Katalog zasobów" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "Metoda uwierzytelnienia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "Metoda uwierzytelnienia." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "Limit przepustowości" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "Tryb limitu przepustowości" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "Limit przepustowości, np. 1MB." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Adres wiązania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Port wiązania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "Port wiązany jest wymagany dla odwiedzających." @@ -107,23 +107,23 @@ msgstr "Port wiązany jest wymagany dla odwiedzających." msgid "Client" msgstr "Klient" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "Identyfikator klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "Metadane klienta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Zbieranie danych..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "Argumenty polecenia przekazane do wykonania źródła tokenu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -131,11 +131,11 @@ msgstr "" "Polecenie używane do uzyskania tokena. Skrypt init dodaje --allow-" "unsafe=TokenSourceExec, gdy używany jest ten typ źródła." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Wspólne ustawienia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." @@ -143,182 +143,182 @@ msgstr "" "Pole zgodności dla UCI. Sekcje serwera są emitowane jako wpisy serwera " "proxy; sekcje odwiedzających są emitowane jako wpisy odwiedzających." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "Kompresuj ruch proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Kompresja" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "Klucz konfiguracji: auth.oidc.audience." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "Klucz konfiguracji: auth.oidc.clientID." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "Klucz konfiguracji: auth.oidc.clientSecret." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "Klucz konfiguracji: auth.oidc.scope." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "Klucz konfiguracji: auth.oidc.tokenEndpointURL." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "Klucz konfiguracji: log.level." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "Klucz konfiguracji: plugin.crtPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "Klucz konfiguracji: plugin.hostHeaderRewrite." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "Klucz konfiguracji: plugin.httpPassword." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "Klucz konfiguracji: plugin.httpUser." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "Klucz konfiguracji: plugin.keyPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "Klucz konfiguracji: plugin.localPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "Klucz konfiguracji: plugin.password." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "Klucz konfiguracji: plugin.stripPrefix." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "Klucz konfiguracji: plugin.unixPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "Klucz konfiguracji: plugin.username." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "Klucz konfiguracji: proxies[].customDomains." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "Klucz konfiguracji: proxies[].loadBalancer.group." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "Klucz konfiguracji: proxies[].loadBalancer.groupKey." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "Klucz konfiguracji: proxies[].subdomain." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Klucz konfiguracji: transport.quic.keepalivePeriod." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Klucz konfiguracji: transport.quic.maxIdleTimeout." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Klucz konfiguracji: transport.quic.maxIncomingStreams." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "Połącz serwer z lokalnym adresem IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "Liczba puli połączeń" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "Połączenia nawiązane wcześniej." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "Niestandardowy plik certyfikatu CA dla punktu końcowego OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "Niestandardowy serwer DNS używany przez frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Własne domeny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "Serwer DNS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "Utrzymywanie połączenia serwera wybierania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "Limit czasu serwera wybierania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "Wyłącz adresy wspomagane NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "Wyłącz niestandardowy pierwszy bajt TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "Wyłącz adresy wspomagane interfejsem lokalnym dla omijania NAT w XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Wyłącz kolor dziennika" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "Wyłącz kolory dziennika, gdy wyjściem dziennika jest konsola." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Wyłączone" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "Działa, gdy włączono utrzymywanie tunelu XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "Włącz obsługę pprof języka Go na serwerze WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "Włącz protokół HTTP/2 dla wtyczek mostka HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -326,70 +326,74 @@ msgstr "" "Włącz HTTPS dla serwera WWW frpc. Ten przełącznik kontroluje, czy pliki " "webServer.tls.certFile i webServer.tls.keyFile są emitowane." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "Włącz multipleksowanie strumienia TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" "Włącz TLS podczas komunikacji z frps. Od frp v0.50.0 domyślna wartość to " "true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "Włącz lub wyłącz ten proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "Włącz pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "Włącz protokół HTTPS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "Szyfruj ruch proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Szyfrowanie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Zmienna środowiskowa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "Zmienna środowiskowa musi używać formatu KLUCZ=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Zmienne środowiskowe przekazane do wykonania źródła tokena. Użyj " "KLUCZ=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "Wyjdź z frpc, jeśli pierwsze logowanie się nie powiedzie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "Wyjdź, gdy logowanie się nie powiedzie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" "Eksperymentalne bramki funkcji. Użyj klucz=wartość, na przykład " "VirtualNet=true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -399,31 +403,31 @@ msgstr "" "wygenerowanymi sekcjami proxy i visitor. Użyj include FRP lub surowych " "ustawień per‑proxy dla tabel proxy/visitor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "Limit czasu awaryjnego (fallback) w milisekundach dla XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "Milisekundy limitu czasu powrotu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "Powrót do" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "Zapasowa nazwa odwiedzającego dla XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "Bramki funkcji" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "Dla wtyczki odwiedzających virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Ustawienia główne" @@ -431,140 +435,140 @@ msgstr "Ustawienia główne" msgid "Grant access to LuCI app frpc" msgstr "Udziel dostępu do aplikacji LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / domena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "Nagłówki kontroli stanu HTTP. Użyj nagłówek=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "Ścieżka kontroli kondycji HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "Podstawowe hasło uwierzytelniające HTTP lub TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "Podstawowa nazwa użytkownika uwierzytelniania HTTP lub TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Hasło HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "Ścieżka HTTP musi zaczynać się od /." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Użytkownik HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "Kontrola stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "Nagłówki kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "Interwał kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "Interwał kontroli stanu w sekundach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "Niepowodzenie maksymalnej kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "Ścieżka kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" "Ścieżka kontroli stanu jest wymagana, gdy typem kontroli stanu jest http." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "Limit czasu kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "Limit czasu kontroli stanu w sekundach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "Typ kontroli stanu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "Typ kontroli stanu." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Interwał pulsu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "Interwał pulsu w sekundach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Limit czasu pulsu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "Czas oczekiwania pulsu w sekundach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Przepisz nagłówek hosta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "Dołącz pliki konfiguracyjne" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "Utrzymaj tunel XTCP otwarty." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "Utrzymaj tunel otwarty" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "Interwał podtrzymywania połączenia dla multipleksera TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "Moduł równoważenia obciążenia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "Grupa modułu równoważenia obciążenia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" "Grupa modułu równoważenia obciążenia jest wymagana, gdy ustawiony jest klucz " "grupy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "Klucz grupy modułu równoważenia obciążenia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -574,18 +578,18 @@ msgstr "" "lokalnego; wykonanie uruchamia polecenie i wymaga uprawnienia frp unsafe. " "Wyklucza się wzajemnie z auth.token." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokalny IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" "Lokalny adres IP jest przypisany do połączenia z frps. Dotyczy tylko tcp, " "websocket lub wss." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -596,677 +600,677 @@ msgstr "" "zewnętrznego protokołu TLS przez frp; w przypadku http2https/http2http jest " "to lokalny adres nadrzędny." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "Lokalny adres wiązania dla odwiedzającego." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" "Lokalny port wiązania dla odwiedzającego. Użyj wartości ujemnej, aby uniknąć " "wiązania." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Port lokalny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "Lokalny adres IP usługi lub hosta." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "Lokalny port usługi." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Lokalizacje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Ustawienia dziennika" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Poziom rejestrowania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Maks. dni logowania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "Dane wyjściowe rejestrowania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "Ścieżka wyjściowa dziennika lub konsola." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Dziennik stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Dziennik stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "Maksymalna liczba ponownych prób na godzinę" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "Maksymalna liczba dni przechowywania dzienników." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "Metadata" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "Minimalny interwał ponawiania prób" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "Minimalny interwał ponawiania prób XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "Multiplekser" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "Serwer STUN z dziurawieniem NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NIEURUCHOMIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "Dodatkowe parametry punktu końcowego OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "Odbiorcy OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "Identyfikator klienta OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "Tajny klucz klienta OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "Niezabezpieczone pominięcie weryfikacji OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "Adres URL serwera proxy OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "Zakres OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "Adres URL punktu końcowego tokena OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "Plik zaufanego CA OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Środowiska systemów operacyjnych przekazane do frp w celu uzyskania szablonu " "pliku konfiguracyjnego, patrz %s." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" "Uruchom tylko określone serwery proxy lub odwiedzających. Puste oznacza " "uruchomienie wszystkich." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "Tylko wtyczka virtual_net jest ważna dla odwiedzających." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "Ważne tylko dla serwera proxy HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" "Tylko odwiedzający wskazanych użytkowników mogą się połączyć. Użyj *, aby " "zezwolić wszystkim użytkownikom." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "Opcjonalny, unikatowy identyfikator tej instancji frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "Ścieżka do pliku tokena." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "Ścieżka do pliku certyfikatu TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "Ścieżka do pliku prywatnego klucza TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Ścieżka do pliku certyfikatu używanego przez serwer WWW HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "Ścieżka do pliku klucza prywatnego używanego przez serwer WWW HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "Ścieżka do pliku zaufanego certyfikatu CA." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" "Trwała konfiguracja serwera proxy i odwiedzającego w celu zarządzania " "interfejsem WWW lub API." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "Użyj formatu KLUCZ=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Wtyczka" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "Wtyczka HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "Ścieżka certyfikatu wtyczki" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "Przepisanie nagłówka hosta wtyczki" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "Ścieżka klucza wtyczki" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "Adres lokalny wtyczki" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "Nagłówki żądania wtyczki" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "Typ wtyczki." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "Port musi być liczbą z przedziału od 0 do 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "Port musi mieścić się w zakresie od 0 do 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "Port musi być ujemny lub mieścić się w przedziale od 1 do 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "Port musi być ujemny lub mieścić się w przedziale od 1 do 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "Port serwera frps. Domyślnie to 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" "Prefiks dla nazw serwerów proxy. Jeśli ustawiony, nazwy serwerów proxy będą " "miały postać {user}.{proxy}." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "Ustawienia proxy / odwiedzającego" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "Adres URL serwera proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "Adres URL serwera proxy dla punktu końcowego tokena OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" "Adres URL serwera proxy używany do połączenia z frps. Obsługuje http, socks5 " "i ntlm." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "Metadane proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nazwa serwera proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "Prefiks nazwy proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "Wersja protokołu proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "Typ proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "Okres podtrzymania QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "Maksymalny limit czasu bezczynności QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "Maksymalna liczba strumieni przychodzących QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "URUCHOMIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Port zdalny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" "Zdalny port nasłuchiwany przez frps. Jeśli 0, fps przypisuje losowy port." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "Usuń proxy z frps po ciągłych awariach." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "Nagłówki żądania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Odradzaj się po awarii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "Nagłówki odpowiedzi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "Przepisz nagłówek hosta." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rola" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" "Trasuj żądania HTTP lub TCPMUX przy użyciu podstawowego uwierzytelniania " "HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "Trasuj według użytkownika HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Uruchom demona jako grupę" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Uruchom demona jako użytkownik" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Hasło SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Użytkownik SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "Serwer STUN używany do przechodzenia NAT." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "Tajny klucz" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" "Tajny klucz używany przez serwery proxy STCP/XTCP/SUDP i odwiedzających." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Adres serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nazwa serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "Nazwa serwera jest wymagana dla odwiedzających." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "Nazwa serwera używana do weryfikacji TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "Nazwa serwera proxy do odwiedzenia." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "Użytkownik serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "Użytkownik serwera dla odwiedzającego." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "Ustaw nagłówki żądania. Użyj nagłówek=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "Ustaw nagłówki odpowiedzi. Użyj nagłówek=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "Od frp v0.50.0 wartością domyślną jest true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" "Pomiń weryfikację TLS dla punktu końcowego OIDC. Niezalecane w środowisku " "produkcyjnym." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "Uruchom proxy / odwiedzających" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Ustawienia uruchamiania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "Ścieżka lokalna pliku statycznego" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "Usunięty prefiks pliku statycznego" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "Ścieżka do przechowywanego pliku" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Subdomena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" "Interwał utrzymywania połączenia TCP w sekundach. Wartość ujemna wyłącza " "utrzymywanie połączenia." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "Multiplekser TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "Mux TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "Interwał utrzymywania aktywności multipleksera TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "Ścieżka certyfikatu TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Ścieżka do certyfikatu TLS jest wymagana, gdy włączony jest protokół HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "Ścieżka klucza prywatnego TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "Ścieżka do prywatnego klucza TLS jest wymagana, gdy włączony jest protokół " "HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "Nazwa serwera TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "Zaufana ścieżka CA TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "Limit czasu połączenia z frps (w sekundach)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "Token i źródło tokena wykluczają się wzajemnie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "Polecenie źródła tokena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "Argumenty polecenia źródła tokena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" "Polecenie źródła tokena jest wymagane, gdy typem źródła tokena jest " "wykonanie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "Środowisko źródła tokena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "Plik źródła tokena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" "Ścieżka do pliku źródła tokena jest wymagana, gdy typem źródła tokena jest " "plik." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "Typ źródła tokena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "Token używany do uwierzytelniania." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "Transport" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "Ustawienia transportu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "Protokół transportu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "Protokół transportu używany do połączenia z frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "Rozmiar pakietu UDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" "Rozmiar pakietu UDP w bajtach. Powinien być zgodny z frps. Domyślnie to 1500." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Ścieżka gniazda domeny uniksowej" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "Użyj nagłówek=wartość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" "Użyj protokołu proxy do przesłania informacji o połączeniu do usługi " "lokalnej." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "Wirtualny adres sieciowy. Wymaga bramki funkcji VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "Adres VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "Docelowy adres IP VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" "Dla odwiedzających virtual_net wymagany jest docelowy adres IP VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Serwer WWW" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Adres serwera WWW" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Katalog zasobów serwera WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Adres wiązania serwera WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Hasło serwera WWW" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Hasło serwera WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Port serwera WWW" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port serwera WWW. Pozostaw pusty lub ustaw na 0, aby wyłączyć serwer WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Użytkownik serwera WWW" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Nazwa użytkownika serwera WWW." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "Gdzie ograniczyć przepustowość." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "Protokół komunikacyjny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "Protokół XTCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "Protokół tunelowania odwiedzających XTCP." @@ -1274,12 +1278,12 @@ msgstr "Protokół tunelowania odwiedzających XTCP." msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "Klient frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/pt/frpc.po b/luci-app-frpc/po/pt/frpc.po index 7ba95bfc..7fbbb06b 100644 --- a/luci-app-frpc/po/pt/frpc.po +++ b/luci-app-frpc/po/pt/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2026.5.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avançado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Endereço de ligação" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Porta do BIND" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "A coletar dados..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Compressão" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Domínios personalizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Desativar cores nos registos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Desativado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Encriptação" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Configurações gerais" @@ -415,796 +419,796 @@ msgstr "Configurações gerais" msgid "Grant access to LuCI app frpc" msgstr "Conceder acesso à app frps do LuCI" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Palavra-passe HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Utilizador HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Intervalo do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Reescrever o cabeçalho do host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Locais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Configurações do registo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Nível de registo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Máximo de dias de registo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Regisro do stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Registo do stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NÃO EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nome do proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "EXECUTADO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Reiniciar caso travado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Função" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Executar daemon como grupo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Executar serviço como utilizador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Palavra-passe do SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Utilizador do SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Endereço do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nome do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Subdomínio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Chave eletrónica" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Caminho do soquete do domínio Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "Cliente frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/pt_BR/frpc.po b/luci-app-frpc/po/pt_BR/frpc.po index fca0223b..284db047 100644 --- a/luci-app-frpc/po/pt_BR/frpc.po +++ b/luci-app-frpc/po/pt_BR/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2026.6.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avançada" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Vincular endereço" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Porta Bind" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Coletando dados..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Compressão" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Domínios customizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Desativar cores nos registros de log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Desativado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Criptografia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Configurações gerais" @@ -415,796 +419,796 @@ msgstr "Configurações gerais" msgid "Grant access to LuCI app frpc" msgstr "Conceder acesso ao aplicativo LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Senha HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Usuário HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Intervalo do Heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Reescrever cabeçalho do host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP Local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Locais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Configurações do registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Nível do registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Registro máximo de dias" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Registro log do stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Registro log do stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NÃO ESTÁ EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Plug-in" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nome do proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Reiniciar caso entre em colapso" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Papel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Executar serviço como usuário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Executar serviço como usuário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Senha SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "usuário SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Endereço do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nome do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Subdomínio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Caminho do soquete do domínio Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "Cliente frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ro/frpc.po b/luci-app-frpc/po/ro/frpc.po index de46c408..e6e73326 100644 --- a/luci-app-frpc/po/ro/frpc.po +++ b/luci-app-frpc/po/ro/frpc.po @@ -11,95 +11,95 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Configurații suplimentare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avansat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Directorul de resurse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autentificare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Adresa de legătură" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Legați portul" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Colectare date ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Setări Comune" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Comprimare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Domenii personalizate" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Dezactivați culoarea jurnalului" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Dezactivat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Criptare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Variabila de mediu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Setări Generale" @@ -416,796 +420,796 @@ msgstr "Setări Generale" msgid "Grant access to LuCI app frpc" msgstr "Acordă acces la aplicația LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Parola HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Utilizator HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Intervalul bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Timpul limită a bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Rescrierea antetului gazdă" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Port local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Locații" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Setări jurnal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Nivel de jurnal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Jurnal maxim zile" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Jurnal stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Jurnal stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "NU FUNCȚIONEAZĂ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Nume proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Tipul de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "Funcţionare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Port la distanță" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Respawn când crapă" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Rularea daemonului ca grup" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Rulați daemonul ca utilizator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Parola SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Utilizator SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Adresa serverului" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Nume server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port de server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Setări de pornire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Subdomeniu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "Mux TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Calea socket-ului de domeniu Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "client frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ru/frpc.po b/luci-app-frpc/po/ru/frpc.po index 73d627e4..a266397d 100644 --- a/luci-app-frpc/po/ru/frpc.po +++ b/luci-app-frpc/po/ru/frpc.po @@ -12,99 +12,99 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "Добавить прокси или визитёра..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" "Дополнительные параметры конечной точки токена OIDC. Используйте формат " "key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "Дополнительные области действия авторизации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "Дополнительные метаданные клиента. Используйте формат key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "Дополнительные файлы конфигурации, подключаемые frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Дополнительные конфигурации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "Дополнительные метаданные прокси. Используйте формат key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "Дополнительные области действия для включения данных аутентификации." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "Адрес сервера frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Дополнительно" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "Разрешенные пользователи" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "Аннотации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" "Аннотации, отображаемые на панели управления frps. Используйте формат " "key=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Каталог ресурсов" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "Метод аутентификации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "Метод аутентификации." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "Ограничение пропускной способности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "Режим ограничения пропускной способности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "Лимит скорости, например 1МБ." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Адрес сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Порт сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "Порт привязки обязателен для визитёров." @@ -112,23 +112,23 @@ msgstr "Порт привязки обязателен для визитёров msgid "Client" msgstr "Клиент" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "ID клиента" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "Метаданные клиента" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Сбор данных ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "Аргументы команды для исполняемого файла источника токена." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -136,11 +136,11 @@ msgstr "" "Команда получения токена. При использовании этого типа источника init-скрипт " "добавляет --allow-unsafe=TokenSourceExec." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Общие настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." @@ -148,182 +148,182 @@ msgstr "" "Поле совместимости UCI. Секции сервера выводятся как записи прокси, " "визитёров — как записи визитёров." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "Сжатие трафика прокси." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Компрессия" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "Ключ конфигурации: auth.oidc.audience." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "Ключ конфигурации: auth.oidc.clientID." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "Ключ конфигурации: auth.oidc.clientSecret." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "Ключ конфигурации: auth.oidc.scope." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "Ключ конфигурации: auth.oidc.tokenEndpointURL." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "Ключ конфигурации: log.level." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "Ключ конфигурации: plugin.crtPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "Ключ конфигурации: plugin.hostHeaderRewrite." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "Ключ конфигурации: plugin.httpPassword." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "Ключ конфигурации: plugin.httpUser." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "Ключ конфигурации: plugin.keyPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "Ключ конфигурации: plugin.localPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "Ключ конфигурации: plugin.password." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "Ключ конфигурации: plugin.stripPrefix." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "Ключ конфигурации: plugin.unixPath." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "Ключ конфигурации: plugin.username." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "Ключ конфигурации: proxies[].customDomains." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "Ключ конфигурации: proxies[].loadBalancer.group." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "Ключ конфигурации: proxies[].loadBalancer.groupKey." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "Ключ конфигурации: proxies[].subdomain." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Ключ конфигурации: transport.quic.keepalivePeriod." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Ключ конфигурации: transport.quic.maxIdleTimeout." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Ключ конфигурации: transport.quic.maxIncomingStreams." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "Локальный IP сервера для подключения" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "Размер пула соединений" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "Заранее установленные соединения." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "Пользовательский CA-сертификат для конечной точки OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "Пользовательский DNS-сервер для frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Пользовательские домены" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "DNS сервер" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "Keepalive подключения к серверу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "Таймаут подключения к серверу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "Отключить вспомогательные адреса NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "Отключить пользовательский первый байт TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "Отключить вспомогательные адреса локального интерфейса для XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Отключить цвета в журнале" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "Отключить цвета в логах при выводе в консоль." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Отключено" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "Действует при включённом поддержании туннеля XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "Включить обработчики Go pprof в веб-сервере." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "Включить HTTP/2 для плагинов HTTPS-моста." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -331,68 +331,72 @@ msgstr "" "Включить HTTPS для веб-сервера frpc. Определяет вывод webServer.tls.certFile " "и webServer.tls.keyFile." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "Включить мультиплексирование TCP-потоков." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "Включить TLS при связи с frps. С frp v0.50.0 включено по умолчанию." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "Включить или отключить этот прокси." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "Включить pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "Включить HTTPS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "Шифрование трафика прокси." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Шифрование" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Переменные окружения" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "Переменная окружения должна быть в формате KEY=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Переменные окружения, передаваемые исполняемому файлу источника токена. " "Используйте формат KEY=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "Завершить работу frpc при неудачной первой попытке входа." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "Завершить работу при ошибке входа" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" "Экспериментальные переключатели функций. Используйте формат key=value, " "например, VirtualNet=true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -402,31 +406,31 @@ msgstr "" "сгенерированными секциями прокси и визитёров. Используйте директивы include " "frp или исходные настройки для каждого прокси в таблицах прокси/визитёров." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "Таймаут отката в миллисекундах для XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "Таймаут отката в миллисекундах" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "Откат к" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "Имя резервного визитёра для XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "Переключатели функций" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "Для плагина визитёра virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Основные настройки" @@ -434,138 +438,138 @@ msgstr "Основные настройки" msgid "Grant access to LuCI app frpc" msgstr "Предоставить доступ к LuCI-приложению frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / Домен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" "Заголовки HTTP-проверки работоспособности. Используйте формат Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "Путь HTTP-проверки работоспособности." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "Пароль базовой аутентификации HTTP или TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "Имя пользователя базовой аутентификации HTTP или TCPMUX." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Пароль HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "HTTP-путь должен начинаться с /." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Пользователь HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "Проверка работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "Заголовки проверки работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "Интервал проверки работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "Интервал проверки работоспособности в секундах." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "Максимальное количество неудачных проверок" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "Путь проверки работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "Путь проверки работоспособности обязателен, если тип проверки — HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "Таймаут проверки работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "Таймаут проверки работоспособности в секундах." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "Тип проверки работоспособности" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "Тип проверки работоспособности." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Heartbeat интервал" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "Интервал heartbeat в секундах." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Heartbeat тайм-аут" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "Тайм-аут сигнала heartbeat в секундах." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Перезапись заголовка хоста" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "Включать файлы конфигурации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "Держать XTCP-туннель открытым." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "Держать туннель открытым" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "Интервал keepalive для TCP-мультиплексора." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "Балансировщик нагрузки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "Группа балансировщика" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "Группа балансировщика обязательна, если задан ключ группы." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "Ключ группы балансировщика" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -575,18 +579,18 @@ msgstr "" "локального файла; значение exec выполняет команду и требует небезопасного " "разрешения для frp. Не может использоваться одновременно с auth.token." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Локальный IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" "Локальный IP-адрес, привязываемый при подключении к frps. Действует только " "для tcp, websocket или wss." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -597,667 +601,667 @@ msgstr "" "внешнего TLS-соединения во frp; для http2https/http2http это локальный адрес " "вышестоящей службы." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "Локальный адрес привязки для визитёра." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" "Локальный порт привязки для визитёра. Используйте отрицательное значение, " "чтобы не выполнять привязку." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Локальный порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "IP-адрес или имя локальной службы." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "Порт локальной службы." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Локации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Настройки журнала" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Уровень журналирования" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Хранить журнал (дней)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "Вывод журнала" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "Путь вывода журнала или консоль." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Сохранять вывод stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Сохранять вывод stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "Максимум повторных попыток в час" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "Максимальное число дней хранения журналов." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "Метаданные" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "Минимальный интервал повтора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "Минимальный интервал повтора XTCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "Мультиплексор" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "STUN-сервер для обхода NAT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "НЕ ЗАПУЩЕНО" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "Дополнительные параметры конечной точки OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "Аудитория OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "Идентификатор клиента OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "Секрет клиента OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "Пропускать проверку сертификата OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "URL прокси для OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "Область OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "URL конечной точки токена OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "Файл доверенного CA для OIDC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Переменные окружения ОС, передаваемые в frp для шаблона файла конфигурации, " "см. %s." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" "Запускать только указанные прокси или визитёры. Если пусто, запускать все." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "Для визитёров допустим только плагин virtual_net." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "Действует только для HTTP-прокси." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" "Подключаться могут только визитёры указанных пользователей. Используйте *, " "чтобы разрешить всех пользователей." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "Необязательный уникальный идентификатор этого экземпляра frpc." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "Путь к файлу токена." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "Путь к файлу сертификата TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "Путь к файлу закрытого ключа TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Путь к файлу сертификата, используемому веб-сервером HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "Путь к файлу закрытого ключа, используемому веб-сервером HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "Путь к файлу доверенного сертификата CA." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" "Сохранять конфигурацию прокси и визитёров во время работы для управления " "через веб-интерфейс или API." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "Используйте формат KEY=value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Плагин" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "Плагин HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "Путь к сертификату плагина" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "Перезапись заголовка Host плагина" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "Путь к ключу плагина" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "Локальный адрес плагина" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "Заголовки запроса плагина" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "Тип плагина." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "Порт должен быть числом от 0 до 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "Порт должен быть в диапазоне от 0 до 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "Порт должен быть отрицательным или числом от 1 до 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" "Порт должен быть отрицательным или находиться в диапазоне от 1 до 65535." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "Порт сервера frps. По умолчанию 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" "Префикс имён прокси. Если задан, имена прокси становятся {user}.{proxy}." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "Настройки прокси / визитёров" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "URL прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "URL прокси для конечной точки токена OIDC." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "URL прокси для подключения к frps. Поддерживаются http, socks5 и ntlm." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "Метаданные прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Имя прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "Префикс имени прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "Версия протокола прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Тип прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "Тип прокси." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "Период keepalive QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "Максимальное время простоя QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "Максимум входящих потоков QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ЗАПУЩЕНО" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Удалённый порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" "Удалённый порт, прослушиваемый frps. Если указать 0, frps назначит случайный " "порт." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "Удалять прокси из frps после непрерывных сбоев." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "Заголовки запроса" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Перезапускаться после вылета" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "Заголовки ответа" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "Перезаписывать заголовок Host." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Роль" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" "Маршрутизировать HTTP- или TCPMUX-запросы по пользователю базовой " "аутентификации HTTP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "Маршрутизация по пользователю HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Запуск демона от имени группы" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Запуск демона от имени пользователя" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5-пароль" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5-пользователь" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "STUN-сервер, используемый для прохождения NAT." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "Секретный ключ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "Секретный ключ, используемый прокси и визитёрами STCP/XTCP/SUDP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Адрес сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Имя сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "Для визитёров требуется имя сервера." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "Имя сервера для проверки TLS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Порт сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "Имя серверного прокси, к которому обращается визитёр." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "Пользователь сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "Пользователь сервера для визитёра." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "Задайте заголовки запроса. Используйте формат Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "Задайте заголовки ответа. Используйте формат Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "Начиная с frp 0.50.0, по умолчанию включено." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" "Не выполнять проверку сертификата для конечной точки OIDC. Используйте " "только для тестирования." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "Запускаемые прокси / визитёры" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Настройки запуска" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "Локальный путь к статическим файлам" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "Удаляемый префикс пути статических файлов" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "Путь к файлу хранилища" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Поддомен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" "Интервал keepalive TCP в секундах. Отрицательное значение отключает " "keepalive." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "Мультиплексор TCP." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP мультиплексор" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "Интервал keepalive мультиплексора TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "Путь к сертификату TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "Путь к сертификату TLS обязателен, если включён веб-сервер HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "Путь к закрытому ключу TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "Путь к закрытому ключу TLS обязателен, если включён веб-сервер HTTPS." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "Имя сервера TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "Путь к доверенному сертификату CA для TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "Тайм-аут подключения к frps в секундах." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Токен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "Токен и источник токена являются взаимоисключающими." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "Команда источника токена" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "Аргументы команды источника токена" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "Команда источника токена обязательна, если тип источника токена — exec." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "Переменные окружения источника токена" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "Файл источника токена" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" "Путь к файлу источника токена обязателен, если тип источника токена — file." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "Тип источника токена" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "Токен, используемый для аутентификации." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "Транспорт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "Настройки транспорта" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "Транспортный протокол" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "Транспортный протокол для подключения к frps." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "Размер UDP-пакета" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "Размер UDP-пакета в байтах. Должен совпадать с frps. По умолчанию 1500." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Путь к сокету домена Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "Используйте формат Header=Value." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" "Использовать протокол прокси для передачи информации о подключении к " "локальной службе." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "Адрес виртуальной сети. Требует включённой функции VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "Адрес VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "Целевой IP-адрес VirtualNet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "Для визитёров virtual_net требуется целевой IP-адрес VirtualNet." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Веб-сервер" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Адрес веб-сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Каталог ресурсов веб-сервера." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Адрес привязки веб-сервера." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Пароль веб-сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Пароль веб-сервера." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Порт веб-сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Порт веб-сервера. Оставьте пустым или установите 0, чтобы отключить веб-" "сервер." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Пользователь веб-сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Имя пользователя веб-сервера." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "Где ограничивать пропускную способность." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "Протокол соединения" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "Протокол XTCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "Протокол туннеля визитёра XTCP." @@ -1265,12 +1269,12 @@ msgstr "Протокол туннеля визитёра XTCP." msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp клиент" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/sk/frpc.po b/luci-app-frpc/po/sk/frpc.po index 925be58a..f1fde6c5 100644 --- a/luci-app-frpc/po/sk/frpc.po +++ b/luci-app-frpc/po/sk/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Ďalšie konfigurácie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Pokročilé" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Zakázané" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Zapnuté" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Šifrovanie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -415,796 +419,796 @@ msgstr "Všeobecné nastavenia" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Úroveň záznamu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Adresa servera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Názov servera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port servera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/sv/frpc.po b/luci-app-frpc/po/sv/frpc.po index a7b64a00..242e41de 100644 --- a/luci-app-frpc/po/sv/frpc.po +++ b/luci-app-frpc/po/sv/frpc.po @@ -10,103 +10,103 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Ytterligare konfigurationer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" "AdminAddr anger adressen som administrationsservern binds till.
Som " "standard är värdet ”0.0.0.0”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Avancerat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" "AdminPort anger porten som administrationsservern ska lyssna på. Om värdet " "är 0 startas inte administrationsservern.
Som standard är värdet 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" "AdminPwd anger lösenordet som administrationsservern använder för " "inloggning.
Som standard är värdet ”admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" "AdminUser anger användarnamnet som administrationsservern använder för " "inloggning.
Som standard är värdet ”admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Bindningsadress" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Bind port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -114,308 +114,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Samlar in data ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Vanliga inställningar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Kompression" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Anpassade domäner" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Inaktivera logg-färg" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Inaktiverad" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Miljövariabel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Allmänna inställningar" @@ -423,648 +427,648 @@ msgstr "Allmänna inställningar" msgid "Grant access to LuCI app frpc" msgstr "Godkänn åtkomst till LuCi-appen frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Lösenord för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Användare för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Heartbeat-intervall" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Lokal IP-adress" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Lokal port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" "LocalIp anger IP-adressen eller värdnamnet som proxyn ska vidarebefordra " "till." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Platser" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Loggnivå" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Logga stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Logga stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" "LoginFailExit styr om klienten ska avslutas efter ett misslyckat " "inloggningsförsök. Om värdet är false försöker klienten igen tills en " "inloggning lyckas.
Som standard är värdet true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "KÖRS INTE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Insticksmodul" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Typ av proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "KÖRS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Fjärrport" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Roll" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Kör demonen som grupp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Kör demonen som användare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Serveradress" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Namn på servern" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Port för server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Inställningar för uppstart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Underdomän" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" "TcpMux aktiverar eller inaktiverar multiplexering av TCP-strömmar. Det gör " @@ -1072,158 +1076,158 @@ msgstr "" "värdet är true måste även servern ha TCP-multiplexering aktiverad.
Som " "standard är värdet true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" "Den här listan kan användas för att ange ytterligare parametrar som inte har " "tagits med i LuCI." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1231,12 +1235,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp-klient" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/ta/frpc.po b/luci-app-frpc/po/ta/frpc.po index 57600ff8..4f8afcaf 100644 --- a/luci-app-frpc/po/ta/frpc.po +++ b/luci-app-frpc/po/ta/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "கூடுதல் உள்ளமைவுகள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "மேம்பட்ட" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "சொத்துக்கள் டிர்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "ஏற்பு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "முகவரியை பிணைக்கவும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "துறைமுகம் பிணைப்பு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "தரவு சேகரித்தல் ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "பொதுவான அமைப்புகள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "சுருக்க" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "தனிப்பயன் களங்கள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "பதிவு வண்ணத்தை முடக்கு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "முடக்கப்பட்டது" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "இயக்கப்பட்டது" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "குறியாக்கம்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "சுற்றுச்சூழல் மாறி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "பொது அமைப்புகள்" @@ -415,796 +419,796 @@ msgstr "பொது அமைப்புகள்" msgid "Grant access to LuCI app frpc" msgstr "லூசி ஆப் எஃப்ஆர்பிசிக்கு அணுகல் வழங்கவும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP கடவுச்சொல்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP பயனர்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "இதய துடிப்பு இடைவெளி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "இதய துடிப்பு நேரம் முடிந்தது" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "புரவலன் தலைப்பு மீண்டும் எழுதவும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "உள்ளக ஐபி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "உள்ளக துறைமுகம்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "இருப்பிடங்கள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "பதிவு அமைப்புகள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "பதிவு நிலை" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "பதிவு அதிகபட்ச நாட்கள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "பதிவு நிலைபிழை" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "பதிவு நிலைவெளி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "ஓடவில்லை" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "சொருகு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "பதிலாள் பெயர்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "பதிலாள் வகை" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "இயங்கும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "தொலை துறைமுகம்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "செயலிழந்தபோது ரெச்பான்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "பங்கு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "டீமனை குழுவாக இயக்கவும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "டீமனை பயனராக இயக்கவும்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5 கடவுச்சொல்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 பயனர்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "சேவையக முகவரி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "சேவையக பெயர்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "சேவையக துறைமுகம்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "தொடக்க அமைப்புகள்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "துணை டொமைன்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP MUX" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "டி.எல்.எச்" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "கிள்ளாக்கு" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "யூனிக்ச் டொமைன் சாக்கெட் பாதை" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "FRP வாங்கி" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/templates/frpc.pot b/luci-app-frpc/po/templates/frpc.pot index dd32c3f6..24dc7f8f 100644 --- a/luci-app-frpc/po/templates/frpc.pot +++ b/luci-app-frpc/po/templates/frpc.pot @@ -1,95 +1,95 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -97,308 +97,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "" @@ -406,796 +410,796 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1203,12 +1207,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/tr/frpc.po b/luci-app-frpc/po/tr/frpc.po index 23ef6aef..525ab809 100644 --- a/luci-app-frpc/po/tr/frpc.po +++ b/luci-app-frpc/po/tr/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Ek yapılandırmalar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Gelişmiş" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Varlıklar dizini" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Bağlantı adresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Porta bağla" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "İstemci" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Veri toplama ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Ortak Ayarlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Sıkıştırma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Özel alan adları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Günlük renklerini devre dışı bırak" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Devre dışı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Etkinleştirildi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Şifreleme" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Çevre değişkeni" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Genel Ayarlar" @@ -415,796 +419,796 @@ msgstr "Genel Ayarlar" msgid "Grant access to LuCI app frpc" msgstr "LuCI uygulaması frpc'ye erişim izni verin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP şifresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP kullanıcısı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Heartbeat aralığı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Heartbeat zaman aşımı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Ana bilgisayar üstbilgisini yeniden yazma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Yerel IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Yerel bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Konumlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Günlük Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Günlük seviyesi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Maksimum günleri günlüğe kaydet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Stderr'i günlüğe kaydet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Stdout'u günlüğe kaydet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "ÇALIŞMIYOR" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Eklenti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Proxy adı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Proxy türü" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ÇALIŞIYOR" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Uzak bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Çöktüğünde yeniden çıkart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Arka plan programı grup olarak çalıştır" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Arka plan programı kullanıcı olarak çalıştır" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5 parolası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 kullanıcısı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Sunucu adresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Sunucu adı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Sunucu bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Başlangıç Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Alt alan adı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Unix etki alanı soketi yolu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp İstemcisi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/uk/frpc.po b/luci-app-frpc/po/uk/frpc.po index 5ef20589..497de9b1 100644 --- a/luci-app-frpc/po/uk/frpc.po +++ b/luci-app-frpc/po/uk/frpc.po @@ -11,95 +11,95 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Додаткові параметри" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Розширені" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Каталог ресурсів" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Адреса привʼязки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Порт привʼязки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -107,308 +107,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Збір даних…" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Загальні налаштування" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Стиснення" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Користувацькі домени" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Вимкнути колір журналу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Вимкнено" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Шифрування" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Змінна середовища" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Загальні налаштування" @@ -416,796 +420,796 @@ msgstr "Загальні налаштування" msgid "Grant access to LuCI app frpc" msgstr "Надати доступ до UCI для luci-app-frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Пароль HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Користувач HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "Інтервал контрольного сигналу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Час очікування контрольного сигналу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Перезапис заголовка вузла" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "Локальна IP-адреса" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Локальний порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Розташування" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Налаштування журналу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Рівень журналювання" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Максимальна кількість днів журналу" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Журнал stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Журнал stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "НЕ ПРАЦЮЄ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "Плагін" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Імʼя проксі" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Тип проксі" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "ЗАПУЩЕНО" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "Віддалений порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Перезапускати після збою" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Роль" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Запускати службу від імені групи" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Запускати службу від імені користувача" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Пароль SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Користувач SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Адреса сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Імʼя сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Порт сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Параметри запуску" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Субдомен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "Мультиплексування TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Токен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Шлях до сокета Unix-домену" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1213,12 +1217,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "Клієнт frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/vi/frpc.po b/luci-app-frpc/po/vi/frpc.po index aa73ee64..626b8ab6 100644 --- a/luci-app-frpc/po/vi/frpc.po +++ b/luci-app-frpc/po/vi/frpc.po @@ -10,95 +10,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "Cấu hình thêm" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "Nâng cao" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "Assets dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "Xác thực" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "Gán địa chỉ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "Cổng Bind" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "" @@ -106,308 +106,312 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "Đang thu thập dữ liệu ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "Thiết lập chung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "Nén" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "Tên miền tùy chỉnh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "Disable log color" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "Vô hiệu hoá" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "Kích Hoạt" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "Mã hóa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "Environment variable" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" "visitor tables." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "Các cài đặt chung" @@ -415,796 +419,796 @@ msgstr "Các cài đặt chung" msgid "Grant access to LuCI app frpc" msgstr "Cấp quyền truy cập vào ứng dụng LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "Mật khẩu HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "Người dùng HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "Heartbeat timeout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "Viết lại tiêu đề máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "IP nội bộ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " "external TLS; for http2https/http2http, it is the local upstream address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "Cổng nội bộ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "Vị trí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "Cài đặt Log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "Mức độ nhật ký" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "Log max days" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "Không chạy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "Tên Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "Loại Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "Đang chạy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "Respawn khi bị lỗi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "Vai trò" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "Chạy daemon theo nhóm" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "Chạy daemon với tư cách người dùng" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "Mật khẩu SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "Tài khoản người dùng SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "Địa chỉ máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "Tên máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "Cổng máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "Cài đặt khởi động" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "Miền con" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Đường dẫn tên miền socket Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "" @@ -1212,12 +1216,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/zh_Hans/frpc.po b/luci-app-frpc/po/zh_Hans/frpc.po index 65c54c2e..caf68b1b 100644 --- a/luci-app-frpc/po/zh_Hans/frpc.po +++ b/luci-app-frpc/po/zh_Hans/frpc.po @@ -13,95 +13,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "添加新的代理或访问者..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "附加 OIDC 令牌端点参数。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "额外认证范围" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "附加客户端元数据。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "frpc 包含的附加配置文件。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "额外配置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "附加代理元数据。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "包含认证信息的附加作用域。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "frps 服务器地址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "高级" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "允许用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "注解" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "显示在 frps 仪表盘上的注解。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "资源目录" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "身份认证" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "认证方式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "认证方式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "带宽限制" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "带宽限制模式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "带宽限制,例如 1MB。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "绑定地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "绑定端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "访问者必须填写绑定端口。" @@ -109,23 +109,23 @@ msgstr "访问者必须填写绑定端口。" msgid "Client" msgstr "客户端" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "客户端 ID" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "客户端元数据" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "正在收集数据…" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "传递给令牌来源执行命令的参数。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -133,192 +133,192 @@ msgstr "" "用于获取令牌的命令。使用此来源类型时,init 脚本会添加 --allow-" "unsafe=TokenSourceExec。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "常规设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "UCI 兼容字段。服务端段会生成为代理条目;访问者段会生成为访问者条目。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "压缩代理流量。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "压缩" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "配置键:auth.oidc.audience。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "配置键:auth.oidc.clientID。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "配置键:auth.oidc.clientSecret。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "配置键:auth.oidc.scope。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "配置键:auth.oidc.tokenEndpointURL。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "配置键:log.level。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "配置键:plugin.crtPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "配置键:plugin.hostHeaderRewrite。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "配置键:plugin.httpPassword。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "配置键:plugin.httpUser。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "配置键:plugin.keyPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "配置键:plugin.localPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "配置键:plugin.password。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "配置键:plugin.stripPrefix。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "配置键:plugin.unixPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "配置键:plugin.username。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "配置键:proxies[].customDomains。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "配置键:proxies[].loadBalancer.group。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "配置键:proxies[].loadBalancer.groupKey。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "配置键:proxies[].subdomain。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "配置键:transport.quic.keepalivePeriod。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "配置键:transport.quic.maxIdleTimeout。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "配置键:transport.quic.maxIncomingStreams。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "连接服务器本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "连接池数量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "预先建立的连接数。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "OIDC 端点的自定义 CA 证书文件。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "frpc 使用的自定义 DNS 服务器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "自定义域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "DNS 服务器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "拨号服务器保活" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "拨号服务器超时" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "禁用 NAT 辅助地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "禁用自定义 TLS 首字节" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "禁用用于 XTCP NAT 穿透的本地接口辅助地址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "禁用日志的颜色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "当日志输出到控制台时禁用日志颜色。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "已禁用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "启用 XTCP 保持隧道打开时生效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "在 Web 服务器中启用 Go pprof 处理器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "为 HTTPS 桥接插件启用 HTTP/2。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -326,64 +326,68 @@ msgstr "" "为 frpc Web 服务器启用 HTTPS。此开关控制是否生成 webServer.tls.certFile 和 " "webServer.tls.keyFile。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "启用 TCP 流多路复用。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "与 frps 通信时启用 TLS。自 frp v0.50.0 起默认为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "启用或禁用此代理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "启用 pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "启用 Web HTTPS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "已启用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "加密代理流量。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "加密" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "环境变量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "环境变量必须使用 KEY=value 格式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "传递给令牌来源执行命令的环境变量。使用 KEY=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "首次登录失败时退出 frpc。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "登录失败时退出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "实验性功能开关。使用 key=value,例如 VirtualNet=true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -392,31 +396,31 @@ msgstr "" "在生成的代理和访问者段之前包含额外的根级配置片段。代理/访问者表请使用 frp " "includes 或每个代理的原始设置。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "XTCP 回退超时时间,单位为毫秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "回退超时毫秒数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "回退到" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "XTCP 回退访问者名称。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "功能开关" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "用于 virtual_net 访问者插件。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "通用设置" @@ -424,137 +428,137 @@ msgstr "通用设置" msgid "Grant access to LuCI app frpc" msgstr "授予访问 LuCI 应用 frpc 的权限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / 域名" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "HTTP 健康检查请求头。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "HTTP 健康检查路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "HTTP 或 TCPMUX 基本认证密码。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "HTTP 或 TCPMUX 基本认证用户名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP 密码" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "HTTP 路径必须以 / 开头。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP 用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "健康检查" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "健康检查请求头" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "健康检查间隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "健康检查间隔,单位为秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "健康检查最大失败次数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "健康检查路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "健康检查类型为 http 时必须填写健康检查路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "健康检查超时" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "健康检查超时时间,单位为秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "健康检查类型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "健康检查类型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "心跳包间隔时间" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "心跳间隔,单位为秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "心跳包超时" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "心跳超时时间,单位为秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "主机头重写" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "包含配置文件" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "保持 XTCP 隧道打开。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "保持隧道打开" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "TCP 多路复用保活间隔。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "负载均衡" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "负载均衡组" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "设置负载均衡组密钥时必须填写负载均衡组。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "负载均衡组密钥" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -563,16 +567,16 @@ msgstr "" "从外部来源加载令牌。file 从本地文件读取令牌;exec 运行命令并需要 frp unsafe " "权限。与 auth.token 互斥。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "连接 frps 时绑定的本地 IP。仅对 tcp、websocket 或 wss 有效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -582,643 +586,643 @@ msgstr "" "frp 终止外部 TLS 后访问的本地服务地址;对于 http2https/http2http,这是本地上" "游地址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "访问者本地绑定地址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "访问者本地绑定端口。使用负值可避免绑定。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "本地端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "本地服务 IP 或主机名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "本地服务端口。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "位置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "日志设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "日志级别" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "日志最大天数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "日志输出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "日志输出路径或 console。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "错误日志" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "普通日志" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "每小时最大重试次数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "保留日志的最大天数。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "元数据" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "最小重试间隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "XTCP 最小重试间隔。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "多路复用器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "NAT 打洞 STUN 服务器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "未在运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "OIDC 额外端点参数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "OIDC 受众" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "OIDC 客户端 ID" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "OIDC 客户端密钥" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "OIDC 不安全跳过验证" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "OIDC 代理 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "OIDC 范围" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "OIDC 令牌端点 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "OIDC 受信任 CA 文件" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "传递给 frp 配置文件模板的 OS 环境变量,请参见 %s。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "仅启动指定的代理或访问者。留空表示启动全部。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "访问者仅支持 virtual_net 插件。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "仅对 HTTP 代理有效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "仅允许指定用户的访问者连接。使用 * 允许所有用户。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "此 frpc 实例的可选唯一标识符。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "令牌来源文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "TLS 证书文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "TLS 私钥文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "HTTPS Web 服务器使用的证书文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "HTTPS Web 服务器使用的私钥文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "受信任 CA 证书文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "持久化运行时代理和访问者配置,用于 Web UI 或 API 管理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "请使用 KEY=value 格式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "插件" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "插件 HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "插件证书路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "插件 Host 头重写" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "插件密钥路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "插件本地地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "插件请求头" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "插件类型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "端口必须是 0 到 65535 之间的数字。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "端口必须介于 0 到 65535 之间。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "端口必须为负数,或为 1 到 65535 之间的数字。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "端口必须为负数,或介于 1 到 65535 之间。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "frps 服务器端口。默认值为 7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "代理名称前缀。如果设置,代理名称将变为 {user}.{proxy}。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "代理 / 访问者设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "代理 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "OIDC 令牌端点的代理 URL。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "用于连接 frps 的代理 URL。支持 http、socks5 和 ntlm。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "代理元数据" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "代理名称" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "代理名称前缀" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "代理协议版本" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "代理类型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "代理类型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "QUIC 保活周期" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "QUIC 最大空闲超时" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "QUIC 最大传入流数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "运行中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "远程端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "frps 监听的远程端口。若为 0,frps 会分配随机端口。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "连续失败后从 frps 移除此代理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "请求头" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "崩溃时重启" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "响应头" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "重写 Host 头。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "角色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "按 HTTP 基本认证用户路由 HTTP 或 TCPMUX 请求。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "按 HTTP 用户路由" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "以此组权限运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "以此用户权限运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5 密码" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "用于 NAT 穿透的 STUN 服务器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "密钥" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "STCP/XTCP/SUDP 代理和访问者使用的密钥。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "服务器地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "服务器名称" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "访问者必须填写服务器名称。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "用于 TLS 验证的服务器名称。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "服务器端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "要访问的服务器代理名称。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "服务器用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "访问者对应的服务器用户。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "设置请求头。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "设置响应头。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "自 frp v0.50.0 起默认为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "跳过 OIDC 端点的 TLS 验证。不建议在生产环境使用。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "启动代理 / 访问者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "启动设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "静态文件本地路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "静态文件剥离前缀" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "存储文件路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "子域名" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "TCP 保活间隔,单位为秒。负值表示禁用保活。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "TCP 多路复用器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP 多路复用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "TCP mux 保活间隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "TLS 证书路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "启用 Web HTTPS 时必须填写 TLS 证书路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "TLS 私钥路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "启用 Web HTTPS 时必须填写 TLS 私钥路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "TLS 服务器名称" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "TLS 受信任 CA 路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "连接 frps 的超时时间,单位为秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "令牌" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "令牌和令牌来源互斥。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "令牌来源命令" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "令牌来源命令参数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "令牌来源类型为 exec 时必须填写令牌来源命令。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "令牌来源环境变量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "令牌来源文件" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "令牌来源类型为文件时必须填写令牌来源文件路径。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "令牌来源类型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "用于认证的令牌。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "传输" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "传输设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "传输协议" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "用于连接 frps 的传输协议。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "UDP 数据包大小" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "UDP 数据包大小,单位为字节。应与 frps 匹配。默认值为 1500。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Unix 域套接字路径" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "使用 proxy protocol 向本地服务传递连接信息。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "虚拟网络地址。需要 VirtualNet 功能开关。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "VirtualNet 地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "VirtualNet 目标 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "virtual_net 访问者必须填写 VirtualNet 目标 IP。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Web 服务器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Web 服务器地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Web 服务器资源目录。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Web 服务器绑定地址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Web 服务器密码" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Web 服务器密码。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Web 服务器端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "Web 服务器端口。留空或设为 0 表示禁用 Web 服务器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Web 服务器用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Web 服务器用户名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "带宽限制位置。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "线路协议" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "XTCP 协议" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "XTCP 访问者隧道协议。" @@ -1226,12 +1230,12 @@ msgstr "XTCP 访问者隧道协议。" msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp 客户端" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frpc/po/zh_Hant/frpc.po b/luci-app-frpc/po/zh_Hant/frpc.po index 339f4450..4a80d6ad 100644 --- a/luci-app-frpc/po/zh_Hant/frpc.po +++ b/luci-app-frpc/po/zh_Hant/frpc.po @@ -12,95 +12,95 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1454 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 msgid "Add new proxy or visitor..." msgstr "新增新的代理或訪問者..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:360 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 msgid "Additional OIDC token endpoint params. Use key=value." msgstr "附加 OIDC 權杖端點參數。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:250 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:260 msgid "Additional auth scopes" msgstr "額外認證範圍" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:612 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:622 msgid "Additional client metadata. Use key=value." msgstr "附加用戶端元資料。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 msgid "Additional config files included by frpc." msgstr "frpc 包含的附加設定檔案。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:174 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 msgid "Additional configs" msgstr "額外設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1060 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 msgid "Additional proxy metadata. Use key=value." msgstr "附加代理元資料。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:251 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:261 msgid "Additional scopes to include authentication information." msgstr "包含驗證資訊的附加作用域。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 msgid "Address of the frps server." msgstr "frps 伺服器位址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1430 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1440 msgid "Advanced" msgstr "高階" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:839 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:849 msgid "Allow users" msgstr "允許使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1079 msgid "Annotations" msgstr "註解" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1070 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1080 msgid "Annotations displayed on frps dashboard. Use key=value." msgstr "顯示在 frps 儀錶板上的註解。使用 key=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:474 msgid "Assets dir" msgstr "資產目錄" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1426 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1436 msgid "Authentication" msgstr "認證" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:241 msgid "Authentication method" msgstr "認證方式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:242 msgid "Authentication method." msgstr "驗證方式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:680 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:690 msgid "Bandwidth limit" msgstr "頻寬限制" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:684 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:694 msgid "Bandwidth limit mode" msgstr "頻寬限制模式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:681 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:691 msgid "Bandwidth limit, for example 1MB." msgstr "頻寬限制,例如 1MB。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:861 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:871 msgid "Bind address" msgstr "繫結位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:875 msgid "Bind port" msgstr "繫結連接埠" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:873 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 msgid "Bind port is required for visitors." msgstr "訪問者必須填寫繫結連接埠。" @@ -108,23 +108,23 @@ msgstr "訪問者必須填寫繫結連接埠。" msgid "Client" msgstr "用戶端" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:183 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:193 msgid "Client ID" msgstr "用戶端 ID" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:611 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:621 msgid "Client metadata" msgstr "用戶端元資料" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 msgid "Collecting data ..." msgstr "收集資料中 ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:317 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 msgid "Command arguments passed to token source exec." msgstr "傳遞給權杖來源執行命令的參數。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:294 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:304 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -132,192 +132,192 @@ msgstr "" "用於取得權杖的命令。使用此來源類型時,init 指令碼會新增 --allow-" "unsafe=TokenSourceExec。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1425 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1435 msgid "Common Settings" msgstr "通用設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:832 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:842 msgid "" "Compatibility field for UCI. Server sections are emitted as proxy entries; " "visitor sections are emitted as visitor entries." msgstr "UCI 相容欄位。伺服端段會產生為代理項目;訪問者段會產生為訪問者項目。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:693 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 msgid "Compress proxy traffic." msgstr "壓縮代理流量。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:692 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 msgid "Compression" msgstr "壓縮" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:348 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:358 msgid "Configuration key: auth.oidc.audience." msgstr "設定鍵:auth.oidc.audience。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:340 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:350 msgid "Configuration key: auth.oidc.clientID." msgstr "設定鍵:auth.oidc.clientID。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:344 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:354 msgid "Configuration key: auth.oidc.clientSecret." msgstr "設定鍵:auth.oidc.clientSecret。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:352 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:362 msgid "Configuration key: auth.oidc.scope." msgstr "設定鍵:auth.oidc.scope。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:356 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:366 msgid "Configuration key: auth.oidc.tokenEndpointURL." msgstr "設定鍵:auth.oidc.tokenEndpointURL。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:398 msgid "Configuration key: log.level." msgstr "設定鍵:log.level。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:980 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:990 msgid "Configuration key: plugin.crtPath." msgstr "設定鍵:plugin.crtPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1004 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1014 msgid "Configuration key: plugin.hostHeaderRewrite." msgstr "設定鍵:plugin.hostHeaderRewrite。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:936 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:946 msgid "Configuration key: plugin.httpPassword." msgstr "設定鍵:plugin.httpPassword。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:932 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:942 msgid "Configuration key: plugin.httpUser." msgstr "設定鍵:plugin.httpUser。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:992 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1002 msgid "Configuration key: plugin.keyPath." msgstr "設定鍵:plugin.keyPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:959 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:969 msgid "Configuration key: plugin.localPath." msgstr "設定鍵:plugin.localPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:944 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:954 msgid "Configuration key: plugin.password." msgstr "設定鍵:plugin.password。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:963 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:973 msgid "Configuration key: plugin.stripPrefix." msgstr "設定鍵:plugin.stripPrefix。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:948 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 msgid "Configuration key: plugin.unixPath." msgstr "設定鍵:plugin.unixPath。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:940 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:950 msgid "Configuration key: plugin.username." msgstr "設定鍵:plugin.username。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:703 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:713 msgid "Configuration key: proxies[].customDomains." msgstr "設定鍵:proxies[].customDomains。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:764 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:774 msgid "Configuration key: proxies[].loadBalancer.group." msgstr "設定鍵:proxies[].loadBalancer.group。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:778 msgid "Configuration key: proxies[].loadBalancer.groupKey." msgstr "設定鍵:proxies[].loadBalancer.groupKey。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:717 msgid "Configuration key: proxies[].subdomain." msgstr "設定鍵:proxies[].subdomain。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:581 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:591 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "設定鍵:transport.quic.keepalivePeriod。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:585 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "設定鍵:transport.quic.maxIdleTimeout。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:589 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:599 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "設定鍵:transport.quic.maxIncomingStreams。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:522 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:532 msgid "Connect server local IP" msgstr "連線伺服器本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:494 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:504 msgid "Connection pool count" msgstr "連線池數量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:495 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:505 msgid "Connections established in advance." msgstr "預先建立的連線數。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:370 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:380 msgid "Custom CA certificate file for OIDC endpoint." msgstr "OIDC 端點的自訂 CA 憑證檔案。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Custom DNS server used by frpc." msgstr "frpc 使用的自訂 DNS 伺服器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:702 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 msgid "Custom domains" msgstr "自訂網域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:213 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "DNS server" msgstr "DNS 伺服器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:486 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:496 msgid "Dial server keepalive" msgstr "撥號伺服器保活" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:482 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:492 msgid "Dial server timeout" msgstr "撥號伺服器逾時" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:903 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 msgid "Disable NAT assisted addresses" msgstr "停用 NAT 輔助位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:568 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:578 msgid "Disable custom TLS first byte" msgstr "停用自訂 TLS 首位元組" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:904 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:914 msgid "Disable local interface assisted addresses for XTCP NAT traversal." msgstr "停用用於 XTCP NAT 穿透的本地介面輔助位址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:395 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 msgid "Disable log color" msgstr "停用紀錄顏色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:396 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 msgid "Disable log colors when log output is console." msgstr "當日誌輸出到主控台時停用日誌顏色。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:258 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:913 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:268 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:708 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:923 msgid "Disabled" msgstr "已停用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:888 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:898 msgid "Effective when XTCP keep tunnel open is enabled." msgstr "啟用 XTCP 保持隧道開啟時生效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:469 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:479 msgid "Enable Go pprof handlers in web server." msgstr "在 Web 伺服器中啟用 Go pprof 處理器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1016 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1026 msgid "Enable HTTP/2 for HTTPS bridge plugins." msgstr "為 HTTPS 橋接外掛啟用 HTTP/2。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:418 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 msgid "" "Enable HTTPS for the frpc web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -325,64 +325,68 @@ msgstr "" "為 frpc Web 伺服器啟用 HTTPS。此開關控制是否產生 webServer.tls.certFile 和 " "webServer.tls.keyFile。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:499 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:509 msgid "Enable TCP stream multiplexing." msgstr "啟用 TCP 流多路複用。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:551 msgid "" "Enable TLS when communicating with frps. Since frp v0.50.0, default is true." msgstr "與 frps 通訊時啟用 TLS。自 frp v0.50.0 起預設為 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:648 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:658 msgid "Enable or disable this proxy." msgstr "啟用或停用此代理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:478 msgid "Enable pprof" msgstr "啟用 pprof" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:417 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:427 msgid "Enable web HTTPS" msgstr "啟用 Web HTTPS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:647 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:657 msgid "Enabled" msgstr "已啟用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:689 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:699 msgid "Encrypt proxy traffic." msgstr "加密代理流量。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:688 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:698 msgid "Encryption" msgstr "加密" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 msgid "Environment variable" msgstr "環境變數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 msgid "Environment variable must use KEY=value format." msgstr "環境變數必須使用 KEY=value 格式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:327 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:337 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "傳遞給權杖來源執行命令的環境變數。使用 KEY=value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:202 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:212 msgid "Exit frpc when the first login fails." msgstr "首次登入失敗時退出 frpc。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:211 msgid "Exit when login fails" msgstr "登入失敗時退出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:595 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:605 msgid "Experimental feature gates. Use key=value, for example VirtualNet=true." msgstr "實驗性功能開關。使用 key=value,例如 VirtualNet=true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:185 msgid "" "Extra root-level configuration fragments included before generated proxy and " "visitor sections. Use frp includes or per-proxy raw settings for proxy/" @@ -391,31 +395,31 @@ msgstr "" "在產生的代理和訪問者段之前包含額外的根層級設定片段。代理/訪問者表請使用 frp " "includes 或每個代理的原始設定。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:900 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 msgid "Fallback timeout in milliseconds for XTCP." msgstr "XTCP 回退逾時時間,單位為毫秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:899 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 msgid "Fallback timeout ms" msgstr "回退逾時毫秒數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:895 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:905 msgid "Fallback to" msgstr "回退到" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:896 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:906 msgid "Fallback visitor name for XTCP." msgstr "XTCP 回退訪問者名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 msgid "Feature gates" msgstr "功能開關" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1047 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1057 msgid "For virtual_net visitor plugin." msgstr "用於 virtual_net 訪問者外掛。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1460 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1470 msgid "General Settings" msgstr "一般設定" @@ -423,137 +427,137 @@ msgstr "一般設定" msgid "Grant access to LuCI app frpc" msgstr "授予存取 luci-app-frpc 的權限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1462 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1472 msgid "HTTP / Domain" msgstr "HTTP / 域名" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:820 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:830 msgid "HTTP health check headers. Use Header=Value." msgstr "HTTP 健康檢查請求標頭。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:801 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:811 msgid "HTTP health check path." msgstr "HTTP 健康檢查路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:747 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 msgid "HTTP or TCPMUX basic auth password." msgstr "HTTP 或 TCPMUX 基本驗證密碼。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:744 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:754 msgid "HTTP or TCPMUX basic auth username." msgstr "HTTP 或 TCPMUX 基本驗證使用者名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:746 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:935 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:756 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:945 msgid "HTTP password" msgstr "HTTP 密碼" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1211 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 msgid "HTTP path must start with /." msgstr "HTTP 路徑必須以 / 開頭。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:931 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:941 msgid "HTTP user" msgstr "HTTP 使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1475 msgid "Health Check" msgstr "健康檢查" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:819 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:829 msgid "Health check headers" msgstr "健康檢查請求標頭" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:796 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:806 msgid "Health check interval" msgstr "健康檢查間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:797 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:807 msgid "Health check interval in seconds." msgstr "健康檢查間隔,單位為秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:792 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:802 msgid "Health check max failed" msgstr "健康檢查最大失敗次數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:800 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:810 msgid "Health check path" msgstr "健康檢查路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:813 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:823 msgid "Health check path is required when health check type is http." msgstr "健康檢查類型為 http 時必須填寫健康檢查路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:788 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:798 msgid "Health check timeout" msgstr "健康檢查逾時" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:789 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:799 msgid "Health check timeout in seconds." msgstr "健康檢查逾時時間,單位為秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:784 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:794 msgid "Health check type" msgstr "健康檢查類型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:785 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:795 msgid "Health check type." msgstr "健康檢查類型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:530 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 msgid "Heartbeat interval" msgstr "心跳間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:531 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:541 msgid "Heartbeat interval in seconds." msgstr "心跳間隔,單位為秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:534 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:544 msgid "Heartbeat timeout" msgstr "心跳逾時" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:535 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:545 msgid "Heartbeat timeout in seconds." msgstr "心跳逾時時間,單位為秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:720 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:730 msgid "Host header rewrite" msgstr "主機標頭重寫" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 msgid "Include config files" msgstr "包含設定檔案" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:884 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:894 msgid "Keep XTCP tunnel open." msgstr "保持 XTCP 隧道開啟。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:883 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:893 msgid "Keep tunnel open" msgstr "保持隧道開啟" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:511 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:521 msgid "Keepalive interval for TCP mux." msgstr "TCP 多路複用保活間隔。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1466 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1476 msgid "Load Balancer" msgstr "負載均衡" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:773 msgid "Load balancer group" msgstr "負載均衡組" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:776 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:786 msgid "Load balancer group is required when group key is set." msgstr "設定負載平衡群組金鑰時必須填寫負載平衡群組。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:777 msgid "Load balancer group key" msgstr "負載均衡組金鑰" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:255 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:265 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -562,16 +566,16 @@ msgstr "" "從外部來源載入權杖。file 從本地檔案讀取權杖;exec 執行命令並需要 frp unsafe " "權限。與 auth.token 互斥。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:659 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:669 msgid "Local IP" msgstr "本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:523 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:533 msgid "" "Local IP bound when connecting to frps. Only valid for tcp, websocket or wss." msgstr "連線 frps 時繫結的本地 IP。僅對 tcp、websocket 或 wss 有效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:967 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:977 msgid "" "Local backend address used by bridge plugins. For https2http, https2https " "and tls2raw, this is the local service address reached after frp terminates " @@ -581,643 +585,643 @@ msgstr "" "frp 終止外部 TLS 後存取的本機服務位址;對於 http2https/http2http,這是本機上" "游位址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:862 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:872 msgid "Local bind address for visitor." msgstr "訪問者本地繫結位址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:866 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:876 msgid "Local bind port for visitor. Use a negative value to avoid binding." msgstr "訪問者本地繫結連接埠。使用負值可避免繫結。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:663 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:673 msgid "Local port" msgstr "本地連接埠" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:660 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:670 msgid "Local service IP or host." msgstr "本地服務 IP 或主機名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:664 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:674 msgid "Local service port." msgstr "本地服務連接埠。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:711 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 msgid "Locations" msgstr "地點" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1431 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1441 msgid "Log Settings" msgstr "日誌設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:397 msgid "Log level" msgstr "紀錄等級" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:391 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 msgid "Log max days" msgstr "紀錄最大天數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:393 msgid "Log output" msgstr "日誌輸出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:394 msgid "Log output path or console." msgstr "日誌輸出路徑或 console。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 msgid "Log stderr" msgstr "紀錄 stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:132 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:142 msgid "Log stdout" msgstr "紀錄 stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:887 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:897 msgid "Max retries per hour" msgstr "每小時最大重試次數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:392 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 msgid "Maximum number of days to keep logs." msgstr "保留日誌的最大天數。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1467 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1477 msgid "Metadata" msgstr "元資料" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:891 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:901 msgid "Min retry interval" msgstr "最小重試間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:892 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:902 msgid "Minimum XTCP retry interval." msgstr "XTCP 最小重試間隔。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:757 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:767 msgid "Multiplexer" msgstr "多路複用器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:197 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:207 msgid "NAT hole STUN server" msgstr "NAT 打洞 STUN 伺服器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "NOT RUNNING" msgstr "未執行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:359 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 msgid "OIDC additional endpoint params" msgstr "OIDC 額外端點參數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:347 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:357 msgid "OIDC audience" msgstr "OIDC 受眾" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:339 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:349 msgid "OIDC client ID" msgstr "OIDC 用戶端 ID" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:343 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:353 msgid "OIDC client secret" msgstr "OIDC 用戶端金鑰" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:373 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:383 msgid "OIDC insecure skip verify" msgstr "OIDC 不安全跳過驗證" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:377 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:387 msgid "OIDC proxy URL" msgstr "OIDC 代理 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:351 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:361 msgid "OIDC scope" msgstr "OIDC 範圍" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:355 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:365 msgid "OIDC token endpoint URL" msgstr "OIDC 權杖端點 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:369 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:379 msgid "OIDC trusted CA file" msgstr "OIDC 受信任 CA 檔案" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:166 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:176 msgid "OS environments passed to frp for config file template, see %s." msgstr "傳遞給 frp 設定檔案模板的 OS 環境變數,請參見 %s。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:228 msgid "Only start specified proxies or visitors. Empty means start all." msgstr "僅啟動指定的代理或訪問者。留空表示啟動全部。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1241 msgid "Only the virtual_net plugin is valid for visitors." msgstr "訪問者僅支援 virtual_net 外掛。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:712 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:722 msgid "Only valid for HTTP proxy." msgstr "僅對 HTTP 代理有效。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:840 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:850 msgid "" "Only visitors from specified users can connect. Use * to allow all users." msgstr "僅允許指定使用者的訪問者連線。使用 * 允許所有使用者。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:184 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 msgid "Optional unique identifier for this frpc instance." msgstr "此 frpc 例項的可選唯一識別符號。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:271 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:281 msgid "Path of token file." msgstr "權杖來源檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:553 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:563 msgid "Path to the TLS certificate file." msgstr "TLS 憑證檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:557 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:567 msgid "Path to the TLS private key file." msgstr "TLS 私鑰檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:439 msgid "Path to the certificate file used by the HTTPS web server." msgstr "HTTPS Web 伺服器使用的憑證檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:447 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:457 msgid "Path to the private key file used by the HTTPS web server." msgstr "HTTPS Web 伺服器使用的私鑰檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:561 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:571 msgid "Path to the trusted CA certificate file." msgstr "受信任 CA 憑證檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:608 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:618 msgid "" "Persist runtime proxy and visitor configuration for Web UI or API management." msgstr "持久化執行時代理和訪問者設定,用於 Web UI 或 API 管理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1231 msgid "Please use KEY=value format." msgstr "請使用 KEY=value 格式。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:909 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1463 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:919 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1473 msgid "Plugin" msgstr "外掛" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1015 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1025 msgid "Plugin HTTP/2" msgstr "外掛 HTTP/2" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:979 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:989 msgid "Plugin certificate path" msgstr "外掛憑證路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1003 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1013 msgid "Plugin host header rewrite" msgstr "外掛 Host 標頭重寫" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:991 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1001 msgid "Plugin key path" msgstr "外掛金鑰路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:966 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:976 msgid "Plugin local address" msgstr "外掛本地位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1031 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1041 msgid "Plugin request headers" msgstr "外掛請求標頭" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:910 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:920 msgid "Plugin type." msgstr "外掛類型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1168 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1178 msgid "Port must be a number between 0 and 65535." msgstr "連接埠必須是 0 到 65535 之間的數字。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1172 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1182 msgid "Port must be between 0 and 65535." msgstr "連接埠必須介於 0 到 65535 之間。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1187 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1197 msgid "Port must be negative or a number between 1 and 65535." msgstr "連接埠必須為負數,或為 1 到 65535 之間的數字。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1201 msgid "Port must be negative or between 1 and 65535." msgstr "連接埠必須為負數,或介於 1 到 65535 之間。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:191 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:201 msgid "Port of the frps server. Default is 7000." msgstr "frps 伺服器連接埠。預設值為 7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:195 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:205 msgid "Prefix for proxy names. If set, proxy names become {user}.{proxy}." msgstr "代理名稱字首。如果設定,代理名稱將變為 {user}.{proxy}。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1449 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1459 msgid "Proxy / Visitor Settings" msgstr "代理 / 訪問者設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:490 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:500 msgid "Proxy URL" msgstr "代理 URL" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:378 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:388 msgid "Proxy URL for OIDC token endpoint." msgstr "OIDC 權杖端點的代理 URL。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:491 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:501 msgid "Proxy URL used to connect to frps. Supports http, socks5 and ntlm." msgstr "用於連線 frps 的代理 URL。支援 http、socks5 和 ntlm。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1059 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1069 msgid "Proxy metadatas" msgstr "代理元資料" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:640 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:650 msgid "Proxy name" msgstr "代理名稱" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:194 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:204 msgid "Proxy name prefix" msgstr "代理名稱字首" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:696 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 msgid "Proxy protocol version" msgstr "代理協議版本" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:643 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:653 msgid "Proxy type" msgstr "代理類型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:644 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:654 msgid "Proxy type." msgstr "代理類型。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:580 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:590 msgid "QUIC keepalive period" msgstr "QUIC 保活週期" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:584 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:594 msgid "QUIC max idle timeout" msgstr "QUIC 最大空閒逾時" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:588 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:598 msgid "QUIC max incoming streams" msgstr "QUIC 最大傳入流數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1390 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 msgid "RUNNING" msgstr "執行中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:667 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:677 msgid "Remote port" msgstr "遠端連接埠" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:668 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:678 msgid "Remote port listened by frps. If 0, frps assigns a random port." msgstr "frps 監聽的遠端連接埠。若為 0,frps 會分配隨機連接埠。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:793 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:803 msgid "Remove proxy from frps after continuous failures." msgstr "連續失敗後從 frps 移除此代理。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:723 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 msgid "Request headers" msgstr "請求標頭" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 msgid "Respawn when crashed" msgstr "崩潰時重生" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:732 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:742 msgid "Response headers" msgstr "回應標頭" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:721 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:731 msgid "Rewrite Host header." msgstr "重寫 Host 頭。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:831 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:841 msgid "Role" msgstr "角色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:753 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:763 msgid "Route HTTP or TCPMUX requests by HTTP basic auth user." msgstr "按 HTTP 基本驗證使用者路由 HTTP 或 TCPMUX 請求。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:752 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:762 msgid "Route by HTTP user" msgstr "按 HTTP 使用者路由" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:153 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 msgid "Run daemon as group" msgstr "以此群組身分執行常駐程式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:162 msgid "Run daemon as user" msgstr "以此使用者身分執行常駐程式" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:943 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:953 msgid "SOCKS5 password" msgstr "SOCKS5 密碼" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:939 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:949 msgid "SOCKS5 user" msgstr "SOCKS5 使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1464 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1474 msgid "STCP / XTCP / SUDP" msgstr "STCP / XTCP / SUDP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:208 msgid "STUN server used for NAT traversal." msgstr "用於 NAT 穿透的 STUN 伺服器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:835 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:845 msgid "Secret key" msgstr "金鑰" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:836 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:846 msgid "Secret key used by STCP/XTCP/SUDP proxies and visitors." msgstr "STCP/XTCP/SUDP 代理和訪問者使用的金鑰。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:186 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:196 msgid "Server address" msgstr "伺服器位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:847 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:857 msgid "Server name" msgstr "伺服器名稱" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:855 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:865 msgid "Server name is required for visitors." msgstr "訪問者必須填寫伺服器名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:565 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:575 msgid "Server name used for TLS verification." msgstr "用於 TLS 驗證的伺服器名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:200 msgid "Server port" msgstr "伺服器連接埠" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:848 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:858 msgid "Server proxy name to visit." msgstr "要訪問的伺服器代理名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:843 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:853 msgid "Server user" msgstr "伺服器使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:844 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:854 msgid "Server user for visitor." msgstr "訪問者對應的伺服器使用者。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:724 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:734 msgid "Set request headers. Use Header=Value." msgstr "設定請求標頭。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:733 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:743 msgid "Set response headers. Use Header=Value." msgstr "設定回應標頭。使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:569 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:579 msgid "Since frp v0.50.0, default is true." msgstr "自 frp v0.50.0 起預設為 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:374 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:384 msgid "" "Skip TLS verification for OIDC endpoint. Not recommended for production." msgstr "跳過 OIDC 端點的 TLS 驗證。不建議在生產環境使用。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:217 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:227 msgid "Start proxies / visitors" msgstr "啟動代理 / 訪問者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1432 #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1442 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1452 msgid "Startup Settings" msgstr "啟動設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:958 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:968 msgid "Static file local path" msgstr "靜態檔案本地路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:962 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:972 msgid "Static file strip prefix" msgstr "靜態檔案剝離字首" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:607 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:617 msgid "Store file path" msgstr "儲存檔案路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:706 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:716 msgid "Subdomain" msgstr "子網域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:487 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:497 msgid "TCP keepalive interval in seconds. Negative value disables keepalive." msgstr "TCP 保活間隔,單位為秒。負值表示停用保活。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:758 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:768 msgid "TCP multiplexer." msgstr "TCP 多路複用器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:498 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:508 msgid "TCP mux" msgstr "TCP 多路複用器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:510 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:520 msgid "TCP mux keepalive interval" msgstr "TCP mux 保活間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:540 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:550 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1428 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1438 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:428 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:552 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:438 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:562 msgid "TLS certificate path" msgstr "TLS 憑證路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:440 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:450 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "啟用 Web HTTPS 時必須填寫 TLS 憑證路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:446 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:556 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:456 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:566 msgid "TLS private key path" msgstr "TLS 私鑰路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:458 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:468 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "啟用 Web HTTPS 時必須填寫 TLS 私鑰路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:564 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:574 msgid "TLS server name" msgstr "TLS 伺服器名稱" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:560 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:570 msgid "TLS trusted CA path" msgstr "TLS 受信任 CA 路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:483 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:493 msgid "Timeout in seconds for connecting to frps." msgstr "連線 frps 的逾時時間,單位為秒。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:235 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:245 msgid "Token" msgstr "權杖" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:244 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:274 msgid "Token and token source are mutually exclusive." msgstr "權杖和權杖來源互斥。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:293 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:303 msgid "Token source command" msgstr "權杖來源命令" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:316 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 msgid "Token source command arguments" msgstr "權杖來源命令參數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:310 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:320 msgid "Token source command is required when token source type is exec." msgstr "權杖來源類型為 exec 時必須填寫權杖來源命令。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:326 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:336 msgid "Token source environment" msgstr "權杖來源環境變數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:270 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:280 msgid "Token source file" msgstr "權杖來源檔案" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:287 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:297 msgid "Token source file path is required when token source type is file." msgstr "權杖來源類型為檔案時必須填寫權杖來源檔案路徑。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:254 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:264 msgid "Token source type" msgstr "權杖來源類型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:236 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:246 msgid "Token used for authentication." msgstr "用於驗證的權杖。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1461 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1471 msgid "Transport" msgstr "傳輸" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1427 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1437 msgid "Transport Settings" msgstr "傳輸設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:514 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:524 msgid "Transport protocol" msgstr "傳輸協議" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:515 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:525 msgid "Transport protocol used to connect to frps." msgstr "用於連線 frps 的傳輸協議。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:221 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:231 msgid "UDP packet size" msgstr "UDP 封包大小" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:232 msgid "UDP packet size in bytes. Should match frps. Default is 1500." msgstr "UDP 資料包大小,單位為位元組。應與 frps 匹配。預設值為 1500。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:947 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:957 msgid "Unix domain socket path" msgstr "Unix 網域 socket 路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1032 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1042 msgid "Use Header=Value." msgstr "使用 Header=Value。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:697 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:707 msgid "Use proxy protocol to transfer connection info to local service." msgstr "使用 proxy protocol 向本機服務傳遞連線資訊。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:604 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:614 msgid "Virtual network address. Requires VirtualNet feature gate." msgstr "虛擬網路位址。需要 VirtualNet 功能開關。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:603 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:613 msgid "VirtualNet address" msgstr "VirtualNet 位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1046 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1056 msgid "VirtualNet destination IP" msgstr "VirtualNet 目標 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1245 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1255 msgid "VirtualNet destination IP is required for virtual_net visitors." msgstr "virtual_net 訪問者必須填寫 VirtualNet 目標 IP。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1429 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1439 msgid "Web Server" msgstr "Web 伺服器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:401 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:411 msgid "Web server address" msgstr "Web 伺服器位址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:465 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:475 msgid "Web server assets directory." msgstr "Web 伺服器資源目錄。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:402 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:412 msgid "Web server bind address." msgstr "Web 伺服器繫結位址。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:413 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:423 msgid "Web server password" msgstr "Web 伺服器密碼" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:414 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:424 msgid "Web server password." msgstr "Web 伺服器密碼。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:405 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:415 msgid "Web server port" msgstr "Web 伺服器連接埠" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:406 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:416 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "Web 伺服器連接埠。留空或設為 0 表示停用 Web 伺服器。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:409 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:419 msgid "Web server user" msgstr "Web 伺服器使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:410 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:420 msgid "Web server username." msgstr "Web 伺服器使用者名稱。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:685 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:695 msgid "Where to limit bandwidth." msgstr "頻寬限制位置。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:518 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:528 msgid "Wire protocol" msgstr "線路協議" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:879 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:889 msgid "XTCP protocol" msgstr "XTCP 協議" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:880 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:890 msgid "XTCP visitor tunnel protocol." msgstr "XTCP 訪問者隧道協議。" @@ -1225,12 +1229,12 @@ msgstr "XTCP 訪問者隧道協議。" msgid "frp" msgstr "frp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1393 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1400 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1403 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:1410 msgid "frp Client" msgstr "frp 用戶端" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:519 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:529 msgid "" "frp internal wire protocol. v2 requires frps support and must be enabled " "explicitly." diff --git a/luci-app-frps/Makefile b/luci-app-frps/Makefile index 84e1009f..7da0b033 100644 --- a/luci-app-frps/Makefile +++ b/luci-app-frps/Makefile @@ -4,6 +4,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for frp server LUCI_DEPENDS:=+luci-base +frps +LUCI_EXTRA_DEPENDS:=frps (>=0.71.0-r2) PKG_LICENSE:=Apache-2.0 diff --git a/luci-app-frps/htdocs/luci-static/resources/view/frps.js b/luci-app-frps/htdocs/luci-static/resources/view/frps.js index 165adbc5..45592cc8 100644 --- a/luci-app-frps/htdocs/luci-static/resources/view/frps.js +++ b/luci-app-frps/htdocs/luci-static/resources/view/frps.js @@ -99,6 +99,16 @@ */ const startupConf = [ + [form.Flag, 'enabled', _('Enable service'), null, + { + enabled: '1', + disabled: '0', + default: '0', + rmempty: false, + retain: true, + remove: writeFlagDisabled + }], + [form.Flag, 'stdout', _('Log stdout'), null, { enabled: '1', diff --git a/luci-app-frps/po/ar/frps.po b/luci-app-frps/po/ar/frps.po index 6e3896aa..74e9a194 100644 --- a/luci-app-frps/po/ar/frps.po +++ b/luci-app-frps/po/ar/frps.po @@ -11,185 +11,189 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 5.17.1-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "الاعدادات الإضافية" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "المصادقة" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "يتم جمع البيانات..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "معطل" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -197,311 +201,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "مستوى التسجيل" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "قيد التشغيل" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -509,208 +517,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -718,11 +726,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/az/frps.po b/luci-app-frps/po/az/frps.po index 3ce23ba0..3c800c18 100644 --- a/luci-app-frps/po/az/frps.po +++ b/luci-app-frps/po/az/frps.po @@ -7,185 +7,189 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -193,311 +197,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -505,208 +513,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -714,11 +722,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/be/frps.po b/luci-app-frps/po/be/frps.po index 619fae28..aa85706c 100644 --- a/luci-app-frps/po/be/frps.po +++ b/luci-app-frps/po/be/frps.po @@ -8,185 +8,189 @@ msgstr "" "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" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -194,311 +198,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -506,208 +514,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -715,11 +723,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/bg/frps.po b/luci-app-frps/po/bg/frps.po index 1d2413a4..ba3920c6 100644 --- a/luci-app-frps/po/bg/frps.po +++ b/luci-app-frps/po/bg/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Контрол на достъпа" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Допълнителни настройки" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Разреши портове" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Присвоен порт" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Събиране на данни ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Общи Настройки" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Забранен" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Ниво на записи" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "НЕ СЕ ИЗПЪЛНЯВА" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "РАБОТИ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,11 +725,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/bn_BD/frps.po b/luci-app-frps/po/bn_BD/frps.po index 8301d9ad..a59793a9 100644 --- a/luci-app-frps/po/bn_BD/frps.po +++ b/luci-app-frps/po/bn_BD/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.11-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "প্রবেশাধিকার নিয়ন্ত্রণ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "অতিরিক্ত কনফিগারেশন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "পোর্টগুলিকে অনুমতি দিন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "অ্যাসেট ডিরেক্টরি" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "অ্যাড্রেস বাইন্ড করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "বাইন্ড পোর্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "তথ্য সংগ্রহ করা হচ্ছে ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "কাস্টম 404 পৃষ্ঠা" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "রঙ্গিন লগ নিষ্ক্রিয় করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "নিষ্ক্রিয়" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "luci-app-frps- এ অ্যাক্সেস মঞ্জুর করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "হার্টবিট টাইমআউট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "কেসিপি বাইন্ড পোর্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "লগ লেভেল" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "সর্বোচ্চ দিন লগ করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "stderr লগ করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "stdout লগ করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "ক্লায়েন্টপ্রতি সর্বোচ্চ পোর্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "চলমান না" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "প্রক্সি বাইন্ড অ্যাড্রেস" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "চলমান" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "ক্র্যাশ করলে পুনরুজ্জীবিত করুন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "গ্রুপ হিসাবে ডেমন চালান" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "ব্যবহারকারী হিসাবে ডেমন চালান" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "সাবডোমেইন হোস্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "টিসিপি মাক্স" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "টোকেন" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost HTTP পোর্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost HTTP সময়সীমা" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost HTTP পোর্ট" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,11 +725,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp সার্ভার" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ca/frps.po b/luci-app-frps/po/ca/frps.po index ba34855a..d72aaecf 100644 --- a/luci-app-frps/po/ca/frps.po +++ b/luci-app-frps/po/ca/frps.po @@ -11,185 +11,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configuracions addicionals" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Adreça de vinculació" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Inhabilitat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -197,311 +201,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Nivell de registre" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Executa el servei com a grup" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Executa el dimoni com l'usuari" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -509,208 +517,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -718,12 +726,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/cs/frps.po b/luci-app-frps/po/cs/frps.po index 082c2d68..48bc89f0 100644 --- a/luci-app-frps/po/cs/frps.po +++ b/luci-app-frps/po/cs/frps.po @@ -10,79 +10,79 @@ msgstr "" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Řízení přístupu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "Přidat nový HTTP zásuvný modul…" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "Další ověř. rozsahy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Další nastavení" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "Další rozsahy které zahrnout do ověřovací informace." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "Adresa, na kterou se frps naváže." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "Adresa, na které budou navázána očekávání spojení proxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Povolit porty" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Složka obsahu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "Publikum, které by OIDC tokeny měly obsahovat." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "Metoda ověřování se" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "Metoda ověřování použitá k ověření frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "Soubor s pověřenými klíči pro bránu SSH tunelu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Adresa, na kterou navázat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Port, na který navázat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Shromažďování dat …" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "Argumenty příkazu předané vykonání zdroje tokenu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -90,55 +90,55 @@ msgstr "" "Příkaz používaný k získání tokenu. Inicializační skript přidává --allow-" "unsafe=TokenSource Exec, když se tento zdroj používá." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Společná nastavení" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "Klíč nastavení: log.level." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Klíč nastavení: transport.quic.keepalivePeriod." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Klíč nastavení: transport.quic.maxIdleTimeout." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Klíč nastavení: transport.quic.maxIncomingStreams." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Uživatelsky určená stránka 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "Podrobné chyby pro klienta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Neobarvovat záznam událostí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "Při vypisování záznamu událostí na konzoli vypnout jeho obarvování." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Zakázáno" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "Neaktualizovat provoz, když je zapnuto přímé předávání TCPMUX." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "Doménová přípona pro HTTP/HTTPS proxy, založené na subdoméně." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -146,7 +146,7 @@ msgstr "" "Zapnout na webovém serveru koncové body pprof ladění/profilování jazyka Go. " "Projeví se pouze pokud je nastavený port webového serveru." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -154,38 +154,42 @@ msgstr "" "Povolit HTTPS pro webový server frps. Tento přepínač ovládá, zda jsou vydané " "webServer.tls.certFile a webServer.tls.keyFile." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "Povolit Promethea" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" "Zapnout multiplexování TCP proudu. Je třeba, aby se toto nastavení shodovalo " "s tím u frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "Povolit pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "Zapnout webu HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Proměnná prostředí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "Je třeba, aby proměnná prostředí používala formát KLÍČ=hodnota." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Proměnné prostředí předávané vykonání zdroje tokenu. Použijte KLÍČ=hodnota." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -193,7 +197,7 @@ msgstr "" "Exportovat Prometheus metriky na webServer API /metrics. Projeví se pouze " "pokud je nastavený port webového serveru." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -202,7 +206,7 @@ msgstr "" "sekcemi HTTP zásuvného modulu. Pro další předvolby, specifické pro tabulku, " "použijte holá nastavení." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "Vynutit TLS" @@ -210,23 +214,27 @@ msgstr "Vynutit TLS" msgid "Grant access to LuCI app frps" msgstr "Udělit přístup k LuCI aplikaci frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "Nastavení HTTP zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "Je třeba, aby URL HTTP zásuvného modulu obsahovala název hostitele." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "Je třeba, aby adresa HTTPS zásuvného modulu byla jen jedna." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "Adresa podpůrné vrstvy HTTP zásuvného modulu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." @@ -234,36 +242,36 @@ msgstr "" "Je třeba, aby operace HTTP zásuvného modulu byla názvem frps operace, " "například Login nebo NewProxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "Je třeba, aby popis umístění HTTP zásuvného modulu začínal na /." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "Popis umístění požadavku HTTP zásuvného modulu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Časový limit kontroly stavu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "Časový limit kontroly stavu (v sekundách)." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Port pro navázání KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "Je třeba, aby port pro navázání KCP a QUIC nebyly stejné." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "Interval udržování spojení pro TCP mux." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -273,186 +281,186 @@ msgstr "" "exec“ spouští příkaz a vyžaduje frp nebezpečné oprávnění. Není možné použít " "v kombinaci s auth.token." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Nastavení zaznamenávání událostí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Stupeň podrobnosti záznamu událostí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Zaznamenávat nejvýše dnů" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "Výstup záznamu událostí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "Popis umístění výstupu záznamu událostí nebo konzole." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Zaznamenávat standardní chybový výstup" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Zaznamenávat standardní výstup" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "Nejvyšší umožněný počet dotazování" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Nejvýše portů na klienta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "Za kolik dnů nejvýše uchovávat záznamy událostí." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "Nejvyšší umožněný počet dotazování pro každou proxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" "Nejvyšší umožněný počet portů, které každý z klientů může použít. 0 (nula) " "znamená neomezený." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "Nejdelší přijatelná doba čekání na fungující spojení." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "Náhradní hodiny analýzy průchodu NAT překladem" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NESPUŠTĚNÉ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "OIDC publikum" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "Vydavatel OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "Vydavatel OIDC použitý pro ověřování tokenů." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "OIDC přeskočit kontrolu skončené platnosti" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "OIDC přeskočit kontrolu vydavatele" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Proměnné prostředí operačního systému předávané frp pro šablonu souboru s " "nastaveními, viz %s." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "Přijímat pouze TLS šifrovaná frp spojení." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "Popis umístění pro automaticky vytvořený soukromý klíč." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "Popis umístění souboru s tokenem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "Popis umístění uživatelsky určené 404 stránky pro HTTP požadavky." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "Popis umístění soubor s TLS certifikátem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "Popis umístění souboru s TLS soukromým klíčem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Popis umístění souboru s certifikátem HTTPS webového serveru." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" "Popis umístění souboru se soukromým klíčem, používaným HTTPS webovým " "serverem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "Popis umístění souboru s certifikátem důvěryhodné cert. autority." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "Adresa zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "Název zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "Operace zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "Popis umístění zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" "Port pro požadavky na HTTP virtuálního hostitele. Nevyplnění nebo 0 (nula) " "ho vypne." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" "Port pro požadavky na HTTPS virtuálního hostitele. Nevyplnění nebo 0 (nula) " "ho vypne." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" "Port pro požadavky TCPMUX HTTP CONNECT. Nevyplnění nebo 0 (nula) ho vypne." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "Je třeba, aby port bylo číslo z rozmezí 0 až 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "Je třeba, aby port byl z rozmezí 0 až 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "Je třeba, aby port byl z rozmezí 1 až 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "Je třeba, aby začátek rozsahu portů nebyl vyšší než jeho konec." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "Port na kterém frps očekává spojení." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." @@ -460,79 +468,79 @@ msgstr "" "Porty, na které je klientům dovoleno se navázat. Použijte jednotlivý port " "jako např. 3001 nebo jejich rozsah jako 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "Soubor se soukromým klíčem pro bránu SSH tunelu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Adresa na kterou navázat proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Port, na který má být navázán QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "Perioda QUIC udržování spojení" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "Časový limit QUIC nejdelší nečinnosti" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "Nejvýše umožněných příchozích QUIC proudů" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "SPUŠTĚNÉ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "V případě pádu spustit znovu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "Časový limit hlavičky odpovědi pro vhost HTTP server (v sekundách)." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "Doba podržení dat strategie pro vytváření prostupů NAT překladem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Spustit proces služby s oprávněními skupiny" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Spustit proces služby pod uživatelskými oprávněními" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "SSH tunel" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "Soubor s pověřenými klíči SSH tunelu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "Popis umístění automaticky vytvářeného soukromého klíče SSH tunelu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "Port na který navázat SSH tunel" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "Port na který navázat bránu SSH tunelu. Nevyplnění tuto funkci vypne." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "Soubor se soukromým klíčem SSH tunelu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "Odeslat frpc podrobnosti konkrétní chyby." @@ -540,131 +548,131 @@ msgstr "Odeslat frpc podrobnosti konkrétní chyby." msgid "Server" msgstr "Server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" "Přeskočit ověřování zda vydavatel OIDC tokenu odpovídá tomu nastavenému." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "Přeskočit kontrolování zda OIDC tokenu neskončila platnost." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Nastavení spouštění" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Hostitel dílčí domény" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "TCP udržování spojení" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "Interval udržování TCP spojení. Záporná hodnota udržování vypíná." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "Interval udržování spojení TCP multiplexeru" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "Port pro TCPMUX HTTP CONNECT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "Průchod TCPMUX" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "Popis umístění TLS certifikátu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Pokud je zapnuté web HTTPS, je zapotřebí popis umístění TLS certifikátu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "Popis umístění soukromého TLS klíče" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "V případě, že je web HTTPS zapnuté, je zapotřebí popisu umístění soukromého " "TLS klíče." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "Popis umístění TLS důvěryhodné cert. autority" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "Token a zdroj tokenu není možné použít dohromady." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "Příkaz zdroje tokenu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "Argumenty pro příkaz zdroje tokenu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "Pokud je typ zdroje tokenu vykonat, je zapotřebí příkaz zdroje tokenu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "Prostředí zdroje tokenu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "Soubor zdroje tokenu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "Pokud je typ zdroje tokenu soubor, je zapotřebí popis jeho umístění." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "Typ zdroje tokenu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "Token sloužící pro ověřování se." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "Nastavení transportu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "Velikost UDP paketu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "Velikost UDP paketu (v bajtech). Mělo by se shodovat s frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." @@ -672,7 +680,7 @@ msgstr "" "UDP port používaný pro KCP. Nevyplnění KCP vypne. Nepoužívat stejný UDP port " "jako QUIC." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." @@ -680,79 +688,79 @@ msgstr "" "UDP port použitý pro QUIC. Nevyplnění QUIC vypíná. Nepoužívejte stejný UDP " "port jako KCP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "Neopakující se název HTTP zásuvného modulu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "Použít jediný port, jako např. 3001 nebo rozsah jako 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "Časový limit uživatelského připojení" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "Ověřit TLS zásuvného modulu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" "Pokud adresa zásuvného modulu používá HTTPS, ověřit jeho TLS certifikát." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "HTTP port Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Časový limit HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "HTTPS port Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Webový server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Adresa webového serveru" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Složka s obsahem webového serveru." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Adresa na kterou webový server navázat." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Heslo k webovému serveru" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Heslo k webovému serveru." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Port webového serveru" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port webového serveru. Pokud ho chcete zakázat, nevyplňujte nebo nastavte na " "0 (nula)." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Uživatel webového serveru" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Uživatelské jméno webového serveru." @@ -760,12 +768,12 @@ msgstr "Uživatelské jméno webového serveru." msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "frps operace zpracovávané tímto HTTP zásuvným modulem." diff --git a/luci-app-frps/po/da/frps.po b/luci-app-frps/po/da/frps.po index 06e0b9be..7a2e1276 100644 --- a/luci-app-frps/po/da/frps.po +++ b/luci-app-frps/po/da/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Yderligere konfigurationer" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Godkendelse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Bind port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Deaktiveret" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Log niveau" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "KØRE IKKE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "KØRE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Kør dæmon som gruppe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Kør dæmon som bruger" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/de/frps.po b/luci-app-frps/po/de/frps.po index fff0ddf0..008f16cb 100644 --- a/luci-app-frps/po/de/frps.po +++ b/luci-app-frps/po/de/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Zugangskontrolle" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Zusätzliche Konfiguration" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Erlaube Ports" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Asset-Verzeichnis" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Bind-Adresse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Apps, die Geräteattestierung verwenden" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Sammeln von Daten ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Allgemeine Einstellungen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Benutzerdefinierte 404 Fehlerseite" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Deaktiviere farbiges Log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Deaktiviert" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Umgebungsvariable" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Zugriff auf LuCI-App frps gewähren" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Heartbeat-Timeout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP-Bind-Port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Protokolleinstellungen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Protokollierungslevel" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Maximale Tage protokollieren" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Stderr protokollieren" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Stdout protokollieren" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Maximale Ports pro Client" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "LÄUFT NICHT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Proxy-Bind-Adresse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "QUIC bind port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "LÄUFT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Starte nach Crash neu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Startup-Einstellungen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Subdomain-Host" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP-mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost-HTTP-Port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost-HTTP-Timeout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost HTTPS-Port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp-Server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/el/frps.po b/luci-app-frps/po/el/frps.po index fc628a6c..9cef998b 100644 --- a/luci-app-frps/po/el/frps.po +++ b/luci-app-frps/po/el/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.8.2\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Εξουσιοδότηση" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Διεύθυνση στην οποία ακούει η υπηρεσία" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ΕΚΤΕΛΕΙΤΕ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/eo/frps.po b/luci-app-frps/po/eo/frps.po index aae5522a..2048f475 100644 --- a/luci-app-frps/po/eo/frps.po +++ b/luci-app-frps/po/eo/frps.po @@ -7,185 +7,189 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -193,311 +197,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -505,208 +513,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -714,11 +722,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/es/frps.po b/luci-app-frps/po/es/frps.po index 1c270edb..6356a60e 100644 --- a/luci-app-frps/po/es/frps.po +++ b/luci-app-frps/po/es/frps.po @@ -13,186 +13,190 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Control de acceso" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "Agregar nuevo complemento HTTP..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "Ámbitos de autorización adicionales" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configuraciones adicionales" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" "Se añadirán ámbitos adicionales para incluir información de autenticación." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Permitir puertos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Directorio de activos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Dirección de enlace" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Puerto de enlace" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Recopilando datos..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Configuración común" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Página 404 personalizada" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Desactivar color de registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Desactivado" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Variable ambiental" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -200,311 +204,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Conceder acceso a la aplicación frps de LuCI" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Tiempo de espera de latidos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Puerto de enlace KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Configuración del registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Nivel de registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Máx. días de registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Registro de stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Registro de stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Máx. puertos por cliente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NO SE ESTÁ EJECUTANDO" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Dirección de enlace de proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Puerto de enlace QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "EJECUTÁNDOSE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Reaparecer cuando se estrelló" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Ejecutar demonio como grupo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Ejecutar demonio como usuario" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -512,208 +520,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Configuración de inicio" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Host de subdominio" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "Multiplexación TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Puerto HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Tiempo de espera HTTP de Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Puerto Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -721,12 +729,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Servidor frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/et/frps.po b/luci-app-frps/po/et/frps.po index 91fb15dd..a1ec6e28 100644 --- a/luci-app-frps/po/et/frps.po +++ b/luci-app-frps/po/et/frps.po @@ -7,185 +7,189 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -193,311 +197,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -505,208 +513,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -714,11 +722,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/fa/frps.po b/luci-app-frps/po/fa/frps.po index 9d8f8d77..c9c28fe0 100644 --- a/luci-app-frps/po/fa/frps.po +++ b/luci-app-frps/po/fa/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.15.1\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "پیکربندی‌های اضافی" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "درگاه‌های مجاز" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "شاخهٔ دارایی‌ها" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "نشانی اتصال" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "درگاه اتصال" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "غیرفعال" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "سطح دسترسی لاگ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "اجرا نمی‌شود" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "در حال اجرا" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/fi/frps.po b/luci-app-frps/po/fi/frps.po index 1cc34f21..a62a5e3c 100644 --- a/luci-app-frps/po/fi/frps.po +++ b/luci-app-frps/po/fi/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Lisäasetukset" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Sallitut portit" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Todennus" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Sido osoite" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Sido portti" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Pois käytöstä" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Lokitaso" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "EI KÄYNNISSÄ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "KÄYNNISSÄ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,11 +725,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/fr/frps.po b/luci-app-frps/po/fr/frps.po index 695108fc..fff57bd4 100644 --- a/luci-app-frps/po/fr/frps.po +++ b/luci-app-frps/po/fr/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Contrôle d'accès" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configurations supplémentaires" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Autoriser les ports" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Répertoire des actifs" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Lier l'adresse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Port de liaison" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Récolte de données..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Paramètres communs" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Page 404 personnalisée" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Désactiver la couleur du journal" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Désactivé" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Variable d'environnement" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Accorder l’accès à l’application LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Délai d'expiration du rythme cardiaque" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Port de liaison KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Niveau de journalisation" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Journal max jours" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Ports max par client" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NON-EXÉCUTANT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Adresse de liaison proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "EXÉCUTION" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Réapparaître en cas de crash" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Exécuter le démon en tant que groupe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Exécuter le démon en tant qu'utilisateur" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Paramètres de démarrage" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Hôte de sous-domaine" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Port HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Délai d'expiration Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Port HTTPS Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp Server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ga/frps.po b/luci-app-frps/po/ga/frps.po index caf59976..8ae7b306 100644 --- a/luci-app-frps/po/ga/frps.po +++ b/luci-app-frps/po/ga/frps.po @@ -11,79 +11,79 @@ msgstr "" "6 && n<11) ? 3 : 4;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Rialú Rochtana" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "Cuir breiseán HTTP nua leis..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "Scóip údaraithe breise" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Cumraíochtaí breise" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "Raointe breise chun faisnéis fíordheimhnithe a áireamh." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "Seoladh a cheanglaíonn frps leis." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "Seoladh a cheanglaíonn éisteoirí seachfhreastalaí leis." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Ceadaigh calafoirt" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Sócmhainní dir" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "Ba chóir go mbeadh comharthaí OIDC an lucht féachana ann." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Fíordheimhniú" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "Modh fíordheimhnithe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "Modh fíordheimhnithe a úsáidtear chun frpc a fhíordheimhniú." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "Comhad eochracha údaraithe do gheata tolláin SSH." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Seoladh ceangail" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Port ceangail" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Ag bailiú sonraí ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "Argóintí ordaithe curtha chuig feidhmchláir foinse an chomhartha." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -91,57 +91,57 @@ msgstr "" "An t-ordú a úsáideadh chun an comhartha a fháil. Cuireann an script init --" "allow-unsafe=TokenSourceExec leis nuair a úsáidtear an cineál foinse seo." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Socruithe Coitianta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "Eochair chumraíochta: log.level." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Eochair chumraíochta: transport.quic.keepalivePeriod." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Eochair chumraíochta: transport.quic.maxIdleTimeout." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Eochair chumraíochta: transport.quic.maxIncomingStreams." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Saincheaptha 404 leathanach" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "Earráidí mionsonraithe don chliant" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Díchumasaigh dath an loga" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "Díchumasaigh dathanna loga nuair a bhíonn aschur loga sa chonsól." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Míchumasaithe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "Ná nuashonraigh trácht nuair a bhíonn pas-trí TCPMUX cumasaithe." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" "Iarmhír fearainn le haghaidh seachfhreastalaithe HTTP/HTTPS bunaithe ar fho-" "fhearainn." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -150,7 +150,7 @@ msgstr "" "bhfreastalaí gréasáin. Ní thagann sé i bhfeidhm ach amháin nuair a " "shocraítear port an fhreastalaí gréasáin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -158,39 +158,43 @@ msgstr "" "Cumasaigh HTTPS don fhreastalaí gréasáin frps. Rialaíonn an lasc seo an " "astaítear webServer.tls.certFile agus webServer.tls.keyFile." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "Cumasaigh Proiméitéas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" "Cumasaigh ilphléacsú srutha TCP. Ní mór don socrú seo a bheith mar an " "gcéanna le frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "Cumasaigh pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "Cumasaigh HTTPS gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Athróg timpeallachta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "Ní mór don athróg timpeallachta an fhormáid KEY=value a úsáid." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Athróga timpeallachta a chuirtear chuig feidhmchláir foinse an chomhartha. " "Úsáid KEY=luach." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -198,7 +202,7 @@ msgstr "" "Easpórtáil méadrachtaí Prometheus ar webServer /metrics API. Ní thagann sé i " "bhfeidhm ach amháin nuair a shocraítear port an fhreastalaí gréasáin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -207,7 +211,7 @@ msgstr "" "rannóga breiseáin HTTP a ghintear. Bain úsáid as socruithe amha le haghaidh " "roghanna breise atá sainiúil don tábla." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "Fórsáil TLS" @@ -215,23 +219,27 @@ msgstr "Fórsáil TLS" msgid "Grant access to LuCI app frps" msgstr "Deonaigh rochtain ar frps app LuCI" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "Socruithe Breiseán HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "Ní mór óstach a bheith san áireamh i URL breiseáin HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "Ní mór seoladh breiseáin HTTP a bheith ina sheoladh aonair." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "Seoladh cúil breiseán HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." @@ -239,36 +247,36 @@ msgstr "" "Ní mór d’oibríocht breiseán HTTP a bheith ina ainm oibríochta frps, mar " "shampla Logáil Isteach nó NewProxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "Ní mór do chonair breiseán HTTP tosú le /." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "Cosán iarrata breiseán HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Teorainn ama buille croí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "Am scoir buille croí i soicindí." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Port ceangail KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "Caithfidh port ceangail KCP agus port ceangail QUIC a bheith difriúil." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "Eatramh coinnigh beo le haghaidh TCP mux." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -278,185 +286,185 @@ msgstr "" "chomhad áitiúil; ritheann exec ordú agus éilíonn sé cead neamhshábháilte " "frp. Eisiatach go frithpháirteach le auth.token." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Socruithe Logála" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Leibhéal loga" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Íoslódáil max laethanta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "Aschur loga" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "Cosán aschuir nó consól logála." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Logáil isteach stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Logáil isteach stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "Uaslíon linn" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Uaschalafoirt in aghaidh an chliaint" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "Uasmhéid laethanta chun logaí a choinneáil." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "Uaslíon linn do gach seachfhreastalaí." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" "Uasmhéid na gcalafort is féidir le gach cliant a úsáid. Ciallaíonn 0 gan aon " "teorainn." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "Uasmhéid ama le fanacht le haghaidh nasc oibre." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "Uaireanta cúltaca anailíse poill NAT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NÍL AG RITH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "Lucht féachana OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "Eisitheoir OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "Eisitheoir OIDC a úsáidtear chun comharthaí a fhíorú." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "Seiceáil éaga scipeála OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "Seiceáil eisitheora scipeáil OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Timpeallachtaí OS curtha chuig frp le haghaidh teimpléad comhaid " "chumraíochta, féach %s." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "Glactar le naisc frpc criptithe le TLS amháin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "Cosán don eochair phríobháideach uathghinte." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "Cosán an chomhaid chomhartha." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "Cosán chuig leathanach saincheaptha 404 le haghaidh iarratais HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "Cosán chuig an gcomhad deimhnithe TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "Cosán chuig an gcomhad eochrach príobháideach TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" "Cosán chuig an gcomhad deimhnithe a úsáideann an freastalaí gréasáin HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" "Cosán chuig an gcomhad eochrach príobháideach a úsáideann an freastalaí " "gréasáin HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "Cosán chuig an gcomhad deimhnithe Údaráis Deimhnithe iontaofa." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "Seoladh breiseáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "Ainm an bhreiseáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "Oibríochtaí breiseán" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "Cosán breiseáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" "Port le haghaidh iarratais óstach fíorúil HTTP. Díchumasaíonn folamh nó 0 é." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" "Port le haghaidh iarratais óstach fíorúil HTTPS. Díchumasaíonn folamh nó 0 é." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" "Port le haghaidh iarratais TCPMUX HTTP CONNECT. Díchumasaíonn folamh nó 0 é." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "Ní mór don phort a bheith ina uimhir idir 0 agus 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "Caithfidh an port a bheith idir 0 agus 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "Caithfidh an port a bheith idir 1 agus 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "Ní mór tús an raoin calafoirt a bheith níos mó ná deireadh." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "Port a n-éisteann frps leis." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." @@ -464,80 +472,80 @@ msgstr "" "Ceadaítear do chliaint calafoirt ceangal. Bain úsáid as calafort aonair " "cosúil le 3001 nó raon cosúil le 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "Comhad eochrach príobháideach do gheata tolláin SSH." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Seoladh ceangail seachfhreastalaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Port ceangail QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "Tréimhse choinneála QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "Uasmhéid ama díomhaoin QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "Uasmhéid sruthanna isteach QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "AG RITH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Respawn nuair a tuairteála" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" "Am críochnaithe ceanntásc freagartha do fhreastalaí HTTP vhost, i soicindí." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "Am coinneála le haghaidh sonraí straitéise pollta NAT." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Rith deamhan mar ghrúpa" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Rith deamhan mar úsáideoir" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "Tollán SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "Comhad eochracha údaraithe tollán SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "Cosán eochrach príobháideach uathghinte tollán SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "Port ceangail tolláin SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "Port ceangail geata tolláin SSH. Díchumasaíonn folamh an ghné seo." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "Comhad eochrach príobháideach tollán SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "Seol sonraí sonracha faoin earráid chuig frpc." @@ -545,138 +553,138 @@ msgstr "Seol sonraí sonracha faoin earráid chuig frpc." msgid "Server" msgstr "Freastalaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" "Seachain seiceáil an bhfuil eisitheoir an chomhartha OIDC ag teacht leis an " "eisitheoir cumraithe." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "Seachain seiceáil an bhfuil an comhartha OIDC imithe in éag." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Socruithe Tosaithe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Óstach subdomain" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "Coinnigh TCP beo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "Eatramh coinneála TCP. Díchumasaíonn luach diúltach an coinneáil beo." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "Eatramh coinneála beo TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "TCPMUX HTTP CONNECT port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "TCPMUX Pas tríd" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "Cosán deimhnithe TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Tá cosán deimhnithe TLS ag teastáil nuair a bhíonn HTTPS gréasáin cumasaithe." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "Cosán eochrach príobháideach TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "Tá cosán eochrach príobháideach TLS ag teastáil nuair a bhíonn HTTPS " "gréasáin cumasaithe." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "Cosán iontaofa TLS CA" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Comhartha" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "Tá comhartha agus foinse comhartha eisiach dá chéile." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "Ordú foinse comharthaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "Argóintí ordaithe foinse chomhartha" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" "Tá an t-ordú foinse comhartha ag teastáil nuair is é an cineál foinse " "comhartha exec." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "Timpeallacht foinse comharthaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "Comhad foinse comharthaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" "Tá cosán comhaid foinse an chomhartha ag teastáil nuair is comhad an cineál " "foinse comhartha." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "Cineál foinse comharthaí" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "Comhartha a úsáidtear le haghaidh fíordheimhnithe." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "Socruithe Iompair" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "Méid an phaicéid UDP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" "Méid an phaicéid UDP i mbéiteanna. Ba chóir go mbeadh sé mar an gcéanna le " "frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." @@ -684,7 +692,7 @@ msgstr "" "Port UDP a úsáidtear le haghaidh KCP. Díchumasaíonn folamh KCP. Ná hathúsáid " "an port UDP céanna le QUIC." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." @@ -692,80 +700,80 @@ msgstr "" "Port UDP a úsáidtear le haghaidh QUIC. Díchumasaíonn folamh QUIC. Ná " "hathúsáid an port UDP céanna le KCP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "Ainm uathúil breiseáin HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "Bain úsáid as port aonair cosúil le 3001 nó raon cosúil le 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "Am críochnaithe nasc úsáideora" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "Fíoraigh TLS breiseáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" "Fíoraigh teastas TLS an bhreiseáin HTTP nuair a úsáideann seoladh an " "bhreiseáin HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost calafort HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Teorainn ama Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost calafort HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Freastalaí Gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Seoladh freastalaí gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Eolaire sócmhainní freastalaí gréasáin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Seoladh ceangail freastalaí gréasáin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Pasfhocal freastalaí gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Pasfhocal freastalaí gréasáin." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Port freastalaí gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port freastalaí gréasáin. Fág folamh nó socraigh go 0 chun an freastalaí " "gréasáin a dhíchumasú." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Úsáideoir freastalaí gréasáin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Ainm úsáideora an fhreastalaí gréasáin." @@ -773,12 +781,12 @@ msgstr "Ainm úsáideora an fhreastalaí gréasáin." msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Freastalaí frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "Oibríochtaí frps a láimhseálann an breiseán HTTP seo." diff --git a/luci-app-frps/po/he/frps.po b/luci-app-frps/po/he/frps.po index f148694f..4421cb61 100644 --- a/luci-app-frps/po/he/frps.po +++ b/luci-app-frps/po/he/frps.po @@ -4,185 +4,189 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "אימות" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -190,311 +194,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -502,208 +510,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -711,11 +719,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/hi/frps.po b/luci-app-frps/po/hi/frps.po index 8a180800..660c4366 100644 --- a/luci-app-frps/po/hi/frps.po +++ b/luci-app-frps/po/hi/frps.po @@ -4,185 +4,189 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "पहुँच नियंत्रण" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -190,311 +194,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -502,208 +510,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -711,11 +719,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/hu/frps.po b/luci-app-frps/po/hu/frps.po index 9e0a598a..66ca7e4e 100644 --- a/luci-app-frps/po/hu/frps.po +++ b/luci-app-frps/po/hu/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Hozzáférés-vezérlés" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "További konfigurációk" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Cím kötése" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Adatgyűjtés..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Általános Beállítások" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Saját 404 oldal" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Színek kikapcsolása a naplóban" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Letiltva" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Környezeti változó" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Hozzáférés engedélyezése az frps LuCI alkalmazáshoz" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Naplózás szintje" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NEM FUT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "FUT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Démon futtatása csoportként" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Démon futtatása felhasználóként" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp szerver" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/it/frps.po b/luci-app-frps/po/it/frps.po index 8fa19fa5..61df0e02 100644 --- a/luci-app-frps/po/it/frps.po +++ b/luci-app-frps/po/it/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Controllo Accessi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configurazioni aggiuntive" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Consenti porte" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Attività dir" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Associa indirizzo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "collega porta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Caricamento dei dati in corso..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Impostazioni Comuni" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Pagina 404 personalizzata" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Disattivato" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Impostazioni log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Livello dei log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NON IN ESECUZIONE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "IN ESECUZIONE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Esegui il demone come utente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ja/frps.po b/luci-app-frps/po/ja/frps.po index 3f7d9dad..987313f6 100644 --- a/luci-app-frps/po/ja/frps.po +++ b/luci-app-frps/po/ja/frps.po @@ -11,185 +11,189 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "アクセス制御" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "追加の構成" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "認証" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "バインドするIPアドレス" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "バインドするポート" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "共通設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "ログの色を無効にする" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "無効" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "環境変数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -197,311 +201,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "ハートビート・タイムアウト" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "ログレベル" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "クライアントごとの最大ポート数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "停止中" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "実行中" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "デーモンをグループとして実行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "デーモンをユーザーとして実行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -509,208 +517,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "トークン" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -718,12 +726,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ko/frps.po b/luci-app-frps/po/ko/frps.po index 8963cf4d..b8fdbf9b 100644 --- a/luci-app-frps/po/ko/frps.po +++ b/luci-app-frps/po/ko/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.17.1-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "접근 제어" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "추가 설정" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "인증" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "바인드 주소" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "바인드 포트" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "데이터 수집 중 ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "일반 설정" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "사용자 정의 404 페이지" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "비활성화" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "환경 변수" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "LuCI 앱 frps에 접근 권한 부여" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP 바인드 포트" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "로그 설정" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "로그 수준" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "표준 오류(stderr) 기록" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "표준 출력(stdout) 기록" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "중지됨" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "프록시 바인드 주소" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "QUIC 바인드 포트" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "실행 중" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "충돌 시 자동 재시작" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "데몬 실행 그룹" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "데몬 실행 사용자" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "시작 설정" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "토큰" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp 서버" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/lo/frps.po b/luci-app-frps/po/lo/frps.po index 3a4dcc03..65fc2669 100644 --- a/luci-app-frps/po/lo/frps.po +++ b/luci-app-frps/po/lo/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.17.1\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "ການຄວບຄຸມການເຂົ້າເຖິງ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "ການຕັ້ງຄ່າເພີ່ມເຕີມ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "ອະນຸຍາດພອດ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "ໄດເຣັກທໍຣີຊັບສິນ (Assets)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "ການຢືນຢັນຕົວຕົນ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "ທີ່ຢູ່ການເຊື່ອມຕໍ່ (Bind address)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "ພອດການເຊື່ອມຕໍ່ (Bind port)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "ກຳລັງເກັບຂໍ້ມູນ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "ການຕັ້ງຄ່າທົ່ວໄປ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "ໜ້າ 404 ແບບກຳນົດເອງ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "ປິດການໃຊ້ງານສີໃນ Log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "ປິດໃຊ້ງານ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "ຕົວແປສະພາບແວດລ້ອມ (Environment variable)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "ໃຫ້ສິດເຂົ້າເຖິງແອັບ LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "ເວລາໝົດກຳນົດ Heartbeat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "ພອດ KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "ການຕັ້ງຄ່າບັນທຶກ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "ລະດັບການບັນທຶກ (Log)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "ຈຳນວນມື້ສູງສຸດຂອງ Log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "ຈຳນວນພອດສູງສຸດຕໍ່ລູກຄ້າ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "ບໍ່ໄດ້ເຮັດວຽກ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "ທີ່ຢູ່ການເຊື່ອມຕໍ່ Proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "ພອດ QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ກຳລັງເຮັດວຽກ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "ເລີ່ມການເຮັດວຽກໃໝ່ເມື່ອຂັດຂ້ອງ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "ແລ່ນ daemon ໃນຖານະກຸ່ມ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "ແລ່ນ daemon ໃນຖານະຜູ້ໃຊ້" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "ການຕັ້ງຄ່າເລີ່ມຕົ້ນລະບົບ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "ໂຮສຊັບໂດເມນ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "ໂທເຄັນ (Token)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "ພອດ Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "ເວລາໝົດກຳນົດ Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "ພອດ Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "ເຊີບເວີ frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/lt/frps.po b/luci-app-frps/po/lt/frps.po index 340086c2..2af89736 100644 --- a/luci-app-frps/po/lt/frps.po +++ b/luci-app-frps/po/lt/frps.po @@ -13,185 +13,189 @@ msgstr "" "(n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.16-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Prieigos valdymas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Papildomi konfigūravimai" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Leisti prievadus" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "„Assets“ katalogas/vietovė" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autentifikavimas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Pririšti adresą" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Pririšti prievadą" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Renkami duomenys..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Tipiniai nustatymai" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Pasirinktinis „404“ puslapis" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Išjungti žurnalo spalvą" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Išjungta/Neįgalinta (-s/-i)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Aplinkybių kintamumas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -199,311 +203,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Duoti prieigą prie „LuCI app frps“" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "„Širdies ritmo“ pasibaigusios užklausos laikas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Pririšti „KCP“ prievadą" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Žurnalo nustatymai" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Žurnalo lygis" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Maksimalus dienų žurnalinimas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Žurnalinti „stderr“" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Žurnalinti „stdout“" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Maksimalus prievadų skaičius klientui" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NEVEIKIA" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Pririšti įgaliotojo adresą" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "„QUIC“ pririšimo prievadas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "VEIKIA" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Atkurti/Perjungti (vardžiuojamai: „Atgimti“), kai užstringa" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Vykdyti „daemon“ kaip grupę" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Vykdyti paslaugų teikimo sistema kaip naudotojas/vartotojas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -511,208 +519,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Paleidimo nustatymai" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Subdomeno-srities skleidėjas/vedėjas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "„TCP“ tankintuvas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Žetonas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "„Vhost HTTP“ prievadas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "„Vhost HTTP“ pasibaigusios užklausos laikas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "„Vhost HTTPS“ prievadas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -720,12 +728,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "„frp“ serveris" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/mr/frps.po b/luci-app-frps/po/mr/frps.po index cedbffa4..239345e4 100644 --- a/luci-app-frps/po/mr/frps.po +++ b/luci-app-frps/po/mr/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "अतिरिक्त कॉन्फिगरेशन" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "अक्षम" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,11 +725,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ms/frps.po b/luci-app-frps/po/ms/frps.po index 3ed7eaf7..288728a0 100644 --- a/luci-app-frps/po/ms/frps.po +++ b/luci-app-frps/po/ms/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Konfig tambahan" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/nb_NO/frps.po b/luci-app-frps/po/nb_NO/frps.po index 994f035a..9f8fec69 100644 --- a/luci-app-frps/po/nb_NO/frps.po +++ b/luci-app-frps/po/nb_NO/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.11-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Ytterligere oppsett" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Godkjenning" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Bind-adresse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Bind-port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Samler data …" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Avskrudd" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Loggingsnivå" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "Kjører ikke" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "KJØRER" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Kjør nisse som gruppe" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Kjør nisse som bruker" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Oppstartsinnstillinger" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Symbol" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/nl/frps.po b/luci-app-frps/po/nl/frps.po index 9b729b76..a617e0fe 100644 --- a/luci-app-frps/po/nl/frps.po +++ b/luci-app-frps/po/nl/frps.po @@ -12,185 +12,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.15.1\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Toegangsbeheer" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Additionele configuraties" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Poorten toestaan" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Authenticatie" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Bind poort" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Verzamelen gegevens ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Uitgeschakeld" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -198,311 +202,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Logboek instellingen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Logboek niveau" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NIET ACTIEF" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ACTIEF" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Voer daemon uit als groep" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Voer daemon uit als gebruiker" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -510,208 +518,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -719,12 +727,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/pl/frps.po b/luci-app-frps/po/pl/frps.po index 02c1b5b7..ee181f0e 100644 --- a/luci-app-frps/po/pl/frps.po +++ b/luci-app-frps/po/pl/frps.po @@ -11,79 +11,79 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Kontrola dostępu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "Dodaj nową wtyczkę HTTP..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "Dodatkowe zakresy autoryzacji" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Dodatkowe konfiguracje" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "Dodatkowe zakresy do uwzględnienia informacji uwierzytelniających." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "Adres, do którego wiąże się frps." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "Adres, do którego wiążą się nasłuchy proxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Zezwalaj na porty" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Katalog zasobów" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "Audience, który powinny zawierać tokeny OIDC." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "Metoda uwierzytelnienia" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "Metoda uwierzytelniania używana do uwierzytelniania frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "Plik kluczy uwierzytelniania dla bramy tunelu SSH." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Adres wiązania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Port wiązania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Zbieranie danych..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "Argumenty polecenia przekazane do wykonania źródła tokenu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -91,55 +91,55 @@ msgstr "" "Polecenie używane do uzyskania tokena. Skrypt init dodaje --allow-" "unsafe=TokenSourceExec, gdy używany jest ten typ źródła." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Wspólne ustawienia" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "Klucz konfiguracji: log.level." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Klucz konfiguracji: transport.quic.keepalivePeriod." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Klucz konfiguracji: transport.quic.maxIdleTimeout." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Klucz konfiguracji: transport.quic.maxIncomingStreams." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Niestandardowa strona 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "Szczegółowe błędy do klienta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Wyłącz kolor dziennika" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "Wyłącz kolory dziennika, gdy wyjściem dziennika jest konsola." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Wyłączone" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "Nie aktualizuj ruchu, gdy włączone jest przekazywanie TCPMUX." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "Sufiks domeny dla serwerów proxy HTTP/HTTPS opartych na subdomenach." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -147,7 +147,7 @@ msgstr "" "Włącz punkty końcowe debugowania/profilowania Go pprof na serwerze WWW. " "Działa tylko po ustawieniu portu serwera WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -155,38 +155,42 @@ msgstr "" "Włącz HTTPS dla serwera WWW frps. Ten przełącznik kontroluje, czy pliki " "webServer.tls.certFile i webServer.tls.keyFile są emitowane." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "Włącz Prometheusa" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" "Włącz multipleksowanie strumienia TCP. To ustawienie musi być zgodne z frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "Włącz pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "Włącz protokół HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Zmienna środowiskowa" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "Zmienna środowiskowa musi używać formatu KLUCZ=wartość." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Zmienne środowiskowe przekazane do wykonania źródła tokena. Użyj " "KLUCZ=wartość." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -194,7 +198,7 @@ msgstr "" "Eksportuj metryki Prometheusa przez API webServer/metrics. Działa tylko po " "ustawieniu portu serwera WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -203,7 +207,7 @@ msgstr "" "wygenerowanymi sekcjami wtyczki HTTP. Użyj surowych ustawień dla dodatkowych " "opcji specyficznych dla tabeli." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "Wymuś TLS" @@ -211,23 +215,27 @@ msgstr "Wymuś TLS" msgid "Grant access to LuCI app frps" msgstr "Udziel dostępu do aplikacji LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "Ustawienia wtyczki HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "Adres URL wtyczki HTTP musi zawierać hosta." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "Adres wtyczki HTTP musi być pojedynczym adresem." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "Adres backendu wtyczki HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." @@ -235,36 +243,36 @@ msgstr "" "Operacja wtyczki HTTP musi być nazwą operacji frps, na przykład Login lub " "NewProxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "Ścieżka wtyczki HTTP musi zaczynać się od /." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "Ścieżka żądania wtyczki HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Limit czasu pulsu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "Czas oczekiwania pulsu w sekundach." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Port wiązania KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "Port wiążący KCP i port wiążący QUIC muszą być różne." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "Interwał podtrzymywania połączenia dla multipleksera TCP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -274,179 +282,179 @@ msgstr "" "lokalnego; wykonanie uruchamia polecenie i wymaga uprawnienia frp unsafe. " "Wyklucza się wzajemnie z auth.token." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Ustawienia dziennika" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Poziom rejestrowania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Maks. dni logowania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "Dane wyjściowe rejestrowania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "Ścieżka wyjściowa dziennika lub konsola." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Dziennik stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Dziennik stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "Maksymalna liczba puli" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Maksymalna liczba portów na klienta" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "Maksymalna liczba dni przechowywania dzienników." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "Maksymalna liczba puli dla każdego serwera proxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" "Maksymalna liczba portów, z których może korzystać każdy klient. 0 oznacza " "brak limitu." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "Maksymalny czas oczekiwania na działające połączenie." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "Rezerwa godzin analizy dziurawienia NAT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NIEURUCHOMIONE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "Odbiorcy OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "Wystawca OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "Wystawca OIDC służący do weryfikacji tokenów." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "Pomijanie sprawdzania ważności OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "Pomijanie sprawdzania wystawcy OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Środowiska systemów operacyjnych przekazane do frp w celu uzyskania szablonu " "pliku konfiguracyjnego, patrz %s." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "Akceptuj tylko połączenia frpc szyfrowane protokołem TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "Ścieżka do automatycznie wygenerowanego klucza prywatnego." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "Ścieżka do pliku tokena." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "Ścieżka do niestandardowej strony 404 dla żądań HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "Ścieżka do pliku certyfikatu TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "Ścieżka do pliku prywatnego klucza TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Ścieżka do pliku certyfikatu używanego przez serwer WWW HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "Ścieżka do pliku klucza prywatnego używanego przez serwer WWW HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "Ścieżka do pliku zaufanego certyfikatu CA." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "Adres wtyczki" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "Nazwa wtyczki" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "Operacje wtyczki" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "Ścieżka wtyczki" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "Port dla żądań wirtualnego hosta HTTP. Pusty lub 0 wyłącza go." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "Port dla żądań wirtualnego hosta HTTPS. Pusty lub 0 wyłącza go." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "Port dla żądań TCPMUX HTTP CONNECT. Pusty lub 0 wyłącza go." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "Port musi być liczbą z przedziału od 0 do 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "Port musi mieścić się w zakresie od 0 do 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "Port musi mieścić się w przedziale od 1 do 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "Początek zakresu portów nie może być większy od końca." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "Port, na którym nasłuchuje frps." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." @@ -454,79 +462,79 @@ msgstr "" "Porty, które klienty mogą wiązać. Użyj pojedynczego portu, np. 3001, lub " "zakresu, np. 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "Plik klucza prywatnego dla bramy tunelu SSH." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Adres powiązania proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Port wiązania QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "Okres podtrzymania QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "Maksymalny limit czasu bezczynności QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "Maksymalna liczba strumieni przychodzących QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "URUCHOMIONE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Odradzaj się po awarii" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "Limit czasu nagłówka odpowiedzi dla serwera HTTP vhost, w sekundach." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "Czas retencji danych strategii dziurawienia NAT." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Uruchom demona jako grupę" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Uruchom demona jako użytkownik" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "Tunel SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "Plik kluczy uwierzytelnionych tunelu SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "Ścieżka klucza prywatnego wygenerowana automatycznie dla tunelu SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "Port wiązania tunelu SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "Port wiązania bramy tunelu SSH. Puste pole wyłącza tę funkcję." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "Plik klucza prywatnego tunelu SSH" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "Wyślij szczegółowe informacje o błędzie do frpc." @@ -534,138 +542,138 @@ msgstr "Wyślij szczegółowe informacje o błędzie do frpc." msgid "Server" msgstr "Serwer" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" "Pomiń sprawdzanie, czy wystawca tokena OIDC jest zgodny ze skonfigurowanym " "wystawcą." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "Pomiń sprawdzanie, czy token OIDC nie wygasł." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Ustawienia uruchamiania" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Host subdomeny" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "Utrzymywanie połączenia TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" "Interwał utrzymywania połączenia TCP. Wartość ujemna wyłącza utrzymywanie " "połączenia." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "Mux TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "Interwał utrzymywania aktywności multipleksera TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "Port TCPMUX HTTP CONNECT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "Przejście TCPMUX" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "Ścieżka certyfikatu TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" "Ścieżka do certyfikatu TLS jest wymagana, gdy włączony jest protokół HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "Ścieżka klucza prywatnego TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" "Ścieżka do prywatnego klucza TLS jest wymagana, gdy włączony jest protokół " "HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "Zaufana ścieżka CA TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "Token i źródło tokena wykluczają się wzajemnie." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "Polecenie źródła tokena" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "Argumenty polecenia źródła tokena" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" "Polecenie źródła tokena jest wymagane, gdy typem źródła tokena jest " "wykonanie." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "Środowisko źródła tokena" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "Plik źródła tokena" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" "Ścieżka do pliku źródła tokena jest wymagana, gdy typem źródła tokena jest " "plik." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "Typ źródła tokena" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "Token używany do uwierzytelniania." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "Ustawienia transportu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "Rozmiar pakietu UDP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "Rozmiar pakietu UDP w bajtach. Powinien być zgodny z frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." @@ -673,7 +681,7 @@ msgstr "" "Port UDP używany dla protokołu KCP. Pusty port wyłącza protokół KCP. Nie " "używaj ponownie tego samego portu UDP co w protokole QUIC." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." @@ -681,79 +689,79 @@ msgstr "" "Port UDP używany dla QUIC. Pusty wyłącza QUIC. Nie używaj ponownie tego " "samego portu UDP co KCP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "Unikalna nazwa wtyczki HTTP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "Użyj pojedynczego portu, np. 3001 lub zakresu, np. 2000–3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "Limit czasu połączenia użytkownika" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "Weryfikuj wtyczkę TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" "Zweryfikuj certyfikat TLS wtyczki HTTP, jeśli adres wtyczki używa protokołu " "HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Port Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Limit czasu Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Port Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Serwer WWW" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Adres serwera WWW" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Katalog zasobów serwera WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Adres wiązania serwera WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Hasło serwera WWW" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Hasło serwera WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Port serwera WWW" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Port serwera WWW. Pozostaw pusty lub ustaw na 0, aby wyłączyć serwer WWW." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Użytkownik serwera WWW" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Nazwa użytkownika serwera WWW." @@ -761,12 +769,12 @@ msgstr "Nazwa użytkownika serwera WWW." msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Serwer frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "Operacje frps obsługiwane przez tę wtyczkę HTTP." diff --git a/luci-app-frps/po/pt/frps.po b/luci-app-frps/po/pt/frps.po index 3c74288a..018f27d6 100644 --- a/luci-app-frps/po/pt/frps.po +++ b/luci-app-frps/po/pt/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2026.5.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Controle de Acesso" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Permitir portas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Endereço de ligação" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Porta do BIND" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "A coletar dados..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Página personalizada de 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Desativar cores nos registos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Desativado" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Conceder acesso à app frps do LuCI" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Porta de ligação KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Configurações do registo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Nível de registo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Máximo de dias de registo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Regisro do stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Registo do stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Máximo de portas por cliente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NÃO EM EXECUÇÃO" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Endereço de ligação proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Porta de ligação QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "EXECUTADO" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Reiniciar caso travado" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Executar daemon como grupo" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Executar serviço como utilizador" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Host de subdomínio" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Chave eletrónica" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Porta Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Tempo limite Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Porta Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Servidor frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/pt_BR/frps.po b/luci-app-frps/po/pt_BR/frps.po index 97d11a49..eb457a45 100644 --- a/luci-app-frps/po/pt_BR/frps.po +++ b/luci-app-frps/po/pt_BR/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.17-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Controle de acesso" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Permitir portas" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Vincular endereço" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Porta Bind" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Coletando dados..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Página personalizada de 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Desativar cores nos registros de log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Desativado" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Conceda acesso UCI ao aplicativo LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Porta de vinculação KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Configurações do registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Nível do registro" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Registro máximo de dias" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Registro log do stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Registro log do stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Máximo de portas por cliente" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NÃO ESTÁ EM EXECUÇÃO" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Endereço de vinculação proxy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "EM EXECUÇÃO" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Reiniciar caso entre em colapso" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Executar serviço como usuário" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Executar serviço como usuário" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Host de subdomínio" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Porta Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Tempo limite Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Porta Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Servidor frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ro/frps.po b/luci-app-frps/po/ro/frps.po index fbb3f6af..ee2d95d4 100644 --- a/luci-app-frps/po/ro/frps.po +++ b/luci-app-frps/po/ro/frps.po @@ -11,185 +11,189 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 5.15-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Controlul Accesului" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Configurații suplimentare" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Permite porturi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Directorul de resurse" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autentificare" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Adresa de legătură" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Legați portul" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Colectare date ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Setări Comune" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Pagina 404 personalizată" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Dezactivați culoarea jurnalului" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Dezactivat" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Variabila de mediu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -197,311 +201,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Acordarea accesului la aplicația LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Timpul limită a bătăilor inimii" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Port de legătură KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Setări jurnal" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Nivel de jurnal" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Jurnal maxim zile" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Jurnal stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Jurnal stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Porturi maxime pe client" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "NU FUNCȚIONEAZĂ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Adresa de legare a proxy-ului" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "Funcţionare" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Respawn când crapă" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Rularea daemonului ca grup" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Rulați daemonul ca utilizator" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -509,208 +517,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Setări de pornire" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Gazda subdomeniului" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "Mux TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Port HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Timpul de expirare HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Port HTTPS Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -718,12 +726,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Server frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ru/frps.po b/luci-app-frps/po/ru/frps.po index 10679730..eed4bf78 100644 --- a/luci-app-frps/po/ru/frps.po +++ b/luci-app-frps/po/ru/frps.po @@ -12,79 +12,79 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.9.1.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Контроль доступа" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "Добавить новый HTTP-плагин..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "Дополнительные области действия авторизации" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Дополнительные конфигурации" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "Дополнительные области действия для включения данных аутентификации." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "Адрес, к которому привязывается frps." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "Адрес, к которому привязываются слушатели прокси." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Разрешить порты" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Каталог ресурсов" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "Аудитория, которую должны содержать OIDC-токены." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "Метод аутентификации" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "Метод аутентификации, используемый для проверки frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "Файл авторизованных ключей для шлюза SSH-туннеля." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Адрес сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Порт сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Сбор данных ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "Аргументы команды для исполняемого файла источника токена." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -92,55 +92,55 @@ msgstr "" "Команда получения токена. При использовании этого типа источника init-скрипт " "добавляет --allow-unsafe=TokenSourceExec." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Общие настройки" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "Ключ конфигурации: log.level." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "Ключ конфигурации: transport.quic.keepalivePeriod." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "Ключ конфигурации: transport.quic.maxIdleTimeout." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "Ключ конфигурации: transport.quic.maxIncomingStreams." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Своя страница 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "Подробные ошибки клиенту" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Отключить цвета в журнале" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "Отключить цвета в логах при выводе в консоль." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Отключено" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "Не обновлять трафик, когда включён сквозной режим TCPMUX." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "Доменный суффикс для HTTP/HTTPS-прокси на основе поддоменов." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -148,7 +148,7 @@ msgstr "" "Включить конечные точки отладки/профилирования Go pprof на веб-сервере. " "Действует только при заданном порте веб-сервера." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -156,38 +156,42 @@ msgstr "" "Включить HTTPS для веб-сервера frps. Этот переключатель управляет выдачей " "параметров webServer.tls.certFile и webServer.tls.keyFile." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "Включить Prometheus" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" "Включить мультиплексирование TCP-потоков. Должно совпадать с настройкой frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "Включить pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "Включить HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Переменные окружения" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "Переменная окружения должна быть в формате KEY=value." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "Переменные окружения, передаваемые исполняемому файлу источника токена. " "Используйте формат KEY=value." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -195,7 +199,7 @@ msgstr "" "Экспортировать метрики Prometheus через API /metrics веб-сервера. Действует " "только при заданном порте веб-сервера." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -204,7 +208,7 @@ msgstr "" "сгенерированными секциями HTTP-плагинов. Используйте raw-настройки для " "дополнительных опций конкретных таблиц." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "Принудительный TLS" @@ -212,23 +216,27 @@ msgstr "Принудительный TLS" msgid "Grant access to LuCI app frps" msgstr "Предоставить доступ к LuCI-приложению frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "Настройки HTTP-плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "URL HTTP-плагина должен содержать хост." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "Адрес HTTP-плагина должен быть одиночным адресом." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "Адрес бэкенда HTTP-плагина." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." @@ -236,36 +244,36 @@ msgstr "" "Операция HTTP-плагина должна быть именем операции frps, например Login или " "NewProxy." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "Путь HTTP-плагина должен начинаться с /." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "Путь запроса HTTP-плагина." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Heartbeat тайм-аут" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "Тайм-аут сигнала heartbeat в секундах." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Порт привязки KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "Порт привязки KCP и порт привязки QUIC должны различаться." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "Интервал keepalive для TCP-мультиплексора." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -275,184 +283,184 @@ msgstr "" "локального файла; значение exec выполняет команду и требует небезопасного " "разрешения для frp. Не может использоваться одновременно с auth.token." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Настройки журнала" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Уровень журналирования" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Хранить журнал (дней)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "Вывод журнала" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "Путь вывода журнала или консоль." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Сохранять вывод stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Сохранять вывод stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "Макс. количество пулов" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Максимальное количество портов для одного клиента" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "Максимальное число дней хранения журналов." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "Максимальное количество пулов для каждого прокси." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" "Максимальное количество портов, доступных каждому клиенту. 0 — без " "ограничений." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "Максимальное время ожидания рабочего соединения." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "Срок хранения данных анализа NAT-дыр (часы)" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "НЕ ЗАПУЩЕНО" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "Аудитория OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "Эмитент OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "Эмитент OIDC, используемый для проверки токенов." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "Пропускать проверку истечения срока через OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "Пропускать проверку эмитента OIDC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" "Переменные окружения ОС, передаваемые в frp для шаблона файла конфигурации, " "см. %s." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "Принимать только TLS-зашифрованные соединения от frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "Путь для автоматически сгенерированного закрытого ключа." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "Путь к файлу токена." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "Путь к пользовательской странице 404 для HTTP-запросов." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "Путь к файлу сертификата TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "Путь к файлу закрытого ключа TLS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "Путь к файлу сертификата, используемому веб-сервером HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "Путь к файлу закрытого ключа, используемому веб-сервером HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "Путь к файлу доверенного сертификата CA." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "Адрес плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "Имя плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "Операции плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "Путь плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" "Порт для HTTP-запросов виртуального хоста. Пустое значение или 0 отключает " "его." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" "Порт для HTTPS-запросов виртуального хоста. Пустое значение или 0 отключает " "его." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" "Порт для HTTP CONNECT запросов TCPMUX. Пустое значение или 0 отключает его." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "Порт должен быть числом от 0 до 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "Порт должен быть в диапазоне от 0 до 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "Порт должен быть от 1 до 65535." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "Начало диапазона портов не должно быть больше конца." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "Порт, который слушает frps." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." @@ -460,79 +468,79 @@ msgstr "" "Порты, которые разрешено занимать клиентам. Можно указать одиночный порт " "(например, 3001) или диапазон (например, 2000-3000)." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "Файл закрытого ключа для шлюза SSH-туннеля." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Адрес привязки прокси-сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Порт QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "Период keepalive QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "Максимальное время простоя QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "Максимум входящих потоков QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ЗАПУЩЕНО" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Перезапускаться после вылета" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "Тайм-аут заголовка ответа для HTTP-сервера vhost, в секундах." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "Срок хранения данных стратегии пробивания NAT-дыр." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Запуск демона от имени группы" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Запуск демона от имени пользователя" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "SSH-туннель" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "Файл авторизованных ключей SSH-туннеля" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "Путь к автоматически сгенерированному закрытому ключу SSH-туннеля" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "Порт привязки SSH-туннеля" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "Порт привязки шлюза SSH-туннеля. Пустое значение отключает эту функцию." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "Файл закрытого ключа SSH-туннеля" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "Отправлять frpc конкретные детали ошибок." @@ -540,129 +548,129 @@ msgstr "Отправлять frpc конкретные детали ошибок msgid "Server" msgstr "Сервер" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" "Пропускать проверку соответствия эмитента OIDC-токена настроенному эмитенту." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "Пропускать проверку истечения срока действия OIDC-токена." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Настройки запуска" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Зона для поддоменов" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "TCP keepalive" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "Интервал TCP keepalive. Отрицательное значение отключает keepalive." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP мультиплексор" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "Интервал keepalive мультиплексора TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "Порт TCPMUX HTTP CONNECT" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "Сквозной режим TCPMUX" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "Путь к сертификату TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "Путь к сертификату TLS обязателен, если включён веб-сервер HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "Путь к закрытому ключу TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "Путь к закрытому ключу TLS обязателен, если включён веб-сервер HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "Путь к доверенному сертификату CA для TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Токен" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "Токен и источник токена являются взаимоисключающими." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "Команда источника токена" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "Аргументы команды источника токена" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "Команда источника токена обязательна, если тип источника токена — exec." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "Переменные окружения источника токена" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "Файл источника токена" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" "Путь к файлу источника токена обязателен, если тип источника токена — file." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "Тип источника токена" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "Токен, используемый для аутентификации." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "Настройки транспорта" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "Размер UDP-пакета" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "Размер UDP-пакета в байтах. Должен совпадать с frpc." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." @@ -670,7 +678,7 @@ msgstr "" "UDP-порт для KCP. Пустое значение отключает KCP. Не используйте тот же UDP-" "порт, что и для QUIC." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." @@ -678,80 +686,80 @@ msgstr "" "UDP-порт для QUIC. Пустое значение отключает QUIC. Не используйте тот же UDP-" "порт, что и для KCP." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "Уникальное имя HTTP-плагина." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" "Используйте одиночный порт, например 3001, или диапазон, например 2000-3000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "Тайм-аут пользовательского соединения" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "Проверять TLS плагина" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" "Проверять TLS-сертификат HTTP-плагина, когда адрес плагина использует HTTPS." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "HTTP-порт виртуального хоста" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Тайм-аут виртуального хоста HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "HTTPS-порт виртуального хоста" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Веб-сервер" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Адрес веб-сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Каталог ресурсов веб-сервера." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Адрес привязки веб-сервера." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Пароль веб-сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Пароль веб-сервера." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Порт веб-сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" "Порт веб-сервера. Оставьте пустым или установите 0, чтобы отключить веб-" "сервер." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Пользователь веб-сервера" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Имя пользователя веб-сервера." @@ -759,12 +767,12 @@ msgstr "Имя пользователя веб-сервера." msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp сервер" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "Операции frps, обрабатываемые этим HTTP-плагином." diff --git a/luci-app-frps/po/sk/frps.po b/luci-app-frps/po/sk/frps.po index 4bdeba34..7968c271 100644 --- a/luci-app-frps/po/sk/frps.po +++ b/luci-app-frps/po/sk/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Ďalšie konfigurácie" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Zakázané" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Úroveň záznamu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/sv/frps.po b/luci-app-frps/po/sv/frps.po index 6f0b7ac9..9bfa5d80 100644 --- a/luci-app-frps/po/sv/frps.po +++ b/luci-app-frps/po/sv/frps.po @@ -10,81 +10,81 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Åtkomstkontroll" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Ytterligare konfigurationer" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Tillåt portar" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Bindningsadress" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Bindningsport" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Samlar in data ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" "BindAddr anger adressen som servern binds till.
Som standard är värdet ”" "0.0.0.0”." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -92,108 +92,112 @@ msgstr "" "BindKcpPort anger KCP-porten som servern lyssnar på. Om värdet är 0 lyssnar " "servern inte efter KCP-anslutningar.
Som standard är värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Vanliga inställningar" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" "BindPort anger porten som servern lyssnar på.
Som standard är värdet " "7000." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" "BindQuicPort anger QUIC-porten som servern lyssnar på. Om värdet är 0 " "lyssnar servern inte efter QUIC-anslutningar.
Som standard är värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" "BindUdpPort anger UDP-porten som servern lyssnar på. Om värdet är 0 lyssnar " "servern inte efter UDP-anslutningar.
Som standard är värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" "Konfigurationsfiler som inkluderas i den tillfälliga konfigurationsfilen" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Inaktivera logg-färg" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Inaktiverad" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" "Dashboard TLS Key File anger sökvägen till filen med den privata TLS-nyckeln " "för att aktivera HTTPS-åtkomst.
Krävs om HTTPS är aktiverat." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Miljövariabel" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" "DashboardPort anger porten som instrumentpanelen lyssnar på. Om värdet är 0 " "startas inte instrumentpanelen.
Som standard är värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" "DashboardPwd anger lösenordet som instrumentpanelen använder för " "inloggning.
Som standard är värdet ”admin”." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -201,7 +205,7 @@ msgstr "" "DashboardUser anger användarnamnet som instrumentpanelen använder för " "inloggning.
Som standard är värdet ”admin”." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -209,7 +213,7 @@ msgstr "" "DisableLogColor inaktiverar loggfärger när LogWay == ”console” om värdet är " "true.
Som standard är värdet false." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -217,317 +221,321 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP-bindningsport" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Loggnivå" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Logga stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Logga stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" "LogMaxDays anger det högsta antalet dagar som logginformation lagras innan " "den tas bort. Detta används endast om LogWay == ”file”.
Som standard är " "värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" "MaxPortsPerClient anger det högsta antalet portar som en enskild klient får " "proxyansluta till. Om värdet är 0 tillämpas ingen gräns.
Som standard " "är värdet 0." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "KÖRS INTE" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "KÖRS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Kör demonen som grupp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Kör demonen som användare" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -535,208 +543,208 @@ msgstr "" msgid "Server" msgstr "Server" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Inställningar för uppstart" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Tecken" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -744,12 +752,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/ta/frps.po b/luci-app-frps/po/ta/frps.po index ca60e6a8..b729df60 100644 --- a/luci-app-frps/po/ta/frps.po +++ b/luci-app-frps/po/ta/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "நுழைவு கட்டுப்பாடு" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "கூடுதல் உள்ளமைவுகள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "துறைமுகங்களை அனுமதிக்கவும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "சொத்துக்கள் டிர்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "ஏற்பு" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "முகவரியை பிணைக்கவும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "துறைமுகம் பிணைப்பு" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "தரவு சேகரித்தல் ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "பொதுவான அமைப்புகள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "தனிப்பயன் 404 பக்கம்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "பதிவு வண்ணத்தை முடக்கு" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "முடக்கப்பட்டது" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "சுற்றுச்சூழல் மாறி" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "லூசி பயன்பாட்டு FRP களுக்கு அணுகலை வழங்கவும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "இதய துடிப்பு நேரம் முடிந்தது" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP பிணைப்பு துறைமுகம்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "பதிவு அமைப்புகள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "பதிவு நிலை" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "பதிவு அதிகபட்ச நாட்கள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "பதிவு நிலைபிழை" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "பதிவு நிலைவெளி" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "ஒரு வாடிக்கையாளருக்கு அதிகபட்ச துறைமுகங்கள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "ஓடவில்லை" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "பதிலாள் பிணைப்பு முகவரி" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "இயங்கும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "செயலிழந்தபோது ரெச்பான்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "டீமனை குழுவாக இயக்கவும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "டீமனை பயனராக இயக்கவும்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "தொடக்க அமைப்புகள்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "துணை டொமைன் புரவலன்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP MUX" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "கிள்ளாக்கு" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost http துறைமுகம்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost http நேரம் முடிந்தது" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost https துறைமுகம்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "FRP சேவையகம்" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/templates/frps.pot b/luci-app-frps/po/templates/frps.pot index 87becfe0..329e59c3 100644 --- a/luci-app-frps/po/templates/frps.pot +++ b/luci-app-frps/po/templates/frps.pot @@ -1,185 +1,189 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -187,311 +191,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -499,208 +507,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -708,11 +716,11 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/tr/frps.po b/luci-app-frps/po/tr/frps.po index 6ef340b6..8a62b7d0 100644 --- a/luci-app-frps/po/tr/frps.po +++ b/luci-app-frps/po/tr/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Erişim Kontrolü" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Ek yapılandırmalar" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Bağlantı noktalarına izin ver" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Varlıklar dizini" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Bağlantı adresi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Porta bağla" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Veri toplama ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Ortak Ayarlar" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Özel 404 sayfası" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Günlük renklerini devre dışı bırak" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Devre dışı" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Çevre değişkeni" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "LuCI uygulaması frps'ye erişim izni verin" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Heartbeat zaman aşımı" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP bağlama bağlantı noktası" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Günlük Ayarları" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Günlük seviyesi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Maksimum günleri günlüğe kaydet" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Stderr'i günlüğe kaydet" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Stdout'u günlüğe kaydet" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "İstemci başına maksimum bağlantı noktası" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "ÇALIŞMIYOR" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Proxy bağlama adresi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ÇALIŞIYOR" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Çöktüğünde yeniden çıkart" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Arka plan programı grup olarak çalıştır" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Arka plan programı kullanıcı olarak çalıştır" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "Sunucu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Başlangıç Ayarları" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Alt alan adı barındırıcısı" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost HTTP bağlantı noktası" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost HTTP zaman aşımı" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost HTTPS bağlantı noktası" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp Sunucusu" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/uk/frps.po b/luci-app-frps/po/uk/frps.po index f97073f3..13eb6e13 100644 --- a/luci-app-frps/po/uk/frps.po +++ b/luci-app-frps/po/uk/frps.po @@ -11,185 +11,189 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 2026.5-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Контроль доступу" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Додаткові параметри" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Дозволені порти" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Каталог ресурсів" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Адреса привʼязки" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Порт привʼязки" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Збір даних…" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Загальні налаштування" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Користувацька сторінка 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Вимкнути колір журналу" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Вимкнено" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Змінна середовища" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -197,311 +201,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Надати доступ до програми LuCI frps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Час очікування контрольного сигналу" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "Порт привʼязки KCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Налаштування журналу" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Рівень журналювання" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Максимальна кількість днів журналу" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Журнал stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Журнал stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Максимальна кількість портів на клієнта" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "НЕ ПРАЦЮЄ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Адреса привʼязки проксі" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "Порт привʼязки QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "ЗАПУЩЕНО" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Перезапускати після збою" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Запускати службу від імені групи" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Запускати службу від імені користувача" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -509,208 +517,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Параметри запуску" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Вузол субдомену" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "Мультиплексування TCP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Токен" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Порт HTTP Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Час очікування Vhost HTTP" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Порт HTTPS Vhost" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -718,12 +726,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "сервер frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/vi/frps.po b/luci-app-frps/po/vi/frps.po index 26a92746..5e9f01bc 100644 --- a/luci-app-frps/po/vi/frps.po +++ b/luci-app-frps/po/vi/frps.po @@ -10,185 +10,189 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.12-dev\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "Quản lý quyền kiểm soát" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "Cấu hình thêm" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "Cho phép cổng" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "Assets dir" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "Xác thực" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "Gán địa chỉ" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "Cổng Bind" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "Đang thu thập dữ liệu ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "Thiết lập chung" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "Tùy chỉnh trang 404" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "Disable log color" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "Vô hiệu hoá" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "Environment variable" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "" @@ -196,311 +200,315 @@ msgstr "" msgid "Grant access to LuCI app frps" msgstr "Cấp quyền truy cập vào ứng dụng LuCI fps" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "Heartbeat timeout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP bind port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " "with auth.token." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "Cài đặt Log" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "Mức độ nhật ký" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "Log max days" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "Cổng tối đa cho mỗi khách hàng" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "Không chạy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "Proxy bind address" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "Đang chạy" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "Respawn khi bị lỗi" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "Chạy daemon theo nhóm" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "Chạy daemon với tư cách người dùng" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "" @@ -508,208 +516,208 @@ msgstr "" msgid "Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "Cài đặt khởi động" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "Subdomain host" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "Token" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost HTTP port" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost HTTP timeout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Cổng Vhost HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "" @@ -717,12 +725,12 @@ msgstr "" msgid "frp" msgstr "" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "Máy chủ frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "" diff --git a/luci-app-frps/po/zh_Hans/frps.po b/luci-app-frps/po/zh_Hans/frps.po index fa7102bf..a738a7be 100644 --- a/luci-app-frps/po/zh_Hans/frps.po +++ b/luci-app-frps/po/zh_Hans/frps.po @@ -13,79 +13,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "访问控制" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "添加新的 HTTP 插件..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "额外认证范围" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "额外配置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "包含认证信息的附加作用域。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "frps 绑定的地址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "代理监听器绑定的地址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "允许的端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "资源目录" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "OIDC 令牌应包含的受众。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "身份认证" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "认证方式" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "用于认证 frpc 的认证方式。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "SSH 隧道网关的 authorized_keys 文件。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "绑定地址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "绑定端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "正在收集数据…" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "传递给令牌来源执行命令的参数。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -93,55 +93,55 @@ msgstr "" "用于获取令牌的命令。使用此来源类型时,init 脚本会添加 --allow-" "unsafe=TokenSourceExec。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "常规设置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "配置键:log.level。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "配置键:transport.quic.keepalivePeriod。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "配置键:transport.quic.maxIdleTimeout。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "配置键:transport.quic.maxIncomingStreams。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "自定义 404 页面" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "向客户端发送详细错误" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "禁用日志的颜色" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "当日志输出到控制台时禁用日志颜色。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "已禁用" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "启用 TCPMUX 透传时不更新流量。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "基于子域名的 HTTP/HTTPS 代理的域名后缀。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -149,7 +149,7 @@ msgstr "" "在 Web 服务器上启用 Go pprof 调试/性能分析端点。仅在设置 Web 服务器端口时生" "效。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -157,35 +157,39 @@ msgstr "" "为 frps Web 服务器启用 HTTPS。此开关控制是否生成 webServer.tls.certFile 和 " "webServer.tls.keyFile。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "启用 Prometheus" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "启用 TCP 流多路复用。此设置必须与 frpc 一致。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "启用 pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "启用 Web HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "环境变量" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "环境变量必须使用 KEY=value 格式。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "传递给令牌来源执行命令的环境变量。使用 KEY=value。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -193,7 +197,7 @@ msgstr "" "在 webServer /metrics API 上导出 Prometheus 指标。仅在设置 Web 服务器端口时生" "效。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -201,7 +205,7 @@ msgstr "" "在生成的 HTTP 插件段之前包含额外的根级配置片段。表相关的额外选项请使用原始设" "置。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "强制 TLS" @@ -209,58 +213,62 @@ msgstr "强制 TLS" msgid "Grant access to LuCI app frps" msgstr "授予访问 LuCI 应用 frps 的权限" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "HTTP 插件设置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "HTTP 插件 URL 必须包含主机。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "HTTP 插件地址必须是单个地址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "HTTP 插件后端地址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "HTTP 插件操作必须是 frps 操作名称,例如 Login 或 NewProxy。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "HTTP 插件路径必须以 / 开头。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "HTTP 插件请求路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "心跳包超时" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "心跳超时时间,单位为秒。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP 绑定端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "KCP 绑定端口和 QUIC 绑定端口必须不同。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "TCP 多路复用保活间隔。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -269,254 +277,254 @@ msgstr "" "从外部来源加载令牌。file 从本地文件读取令牌;exec 运行命令并需要 frp unsafe " "权限。与 auth.token 互斥。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "日志设置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "日志级别" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "日志最大天数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "日志输出" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "日志输出路径或 console。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "错误日志" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "普通日志" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "最大连接池数量" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "每客户端的最大端口数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "保留日志的最大天数。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "每个代理的最大连接池数量。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "每个客户端可使用的最大端口数。0 表示不限制。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "等待工作连接的最长时间。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "NAT 打洞分析保留小时数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "未在运行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "OIDC 受众" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "OIDC 签发者" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "用于验证令牌的 OIDC 颁发者。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "OIDC 跳过过期检查" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "OIDC 跳过签发者检查" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "传递给 frp 配置文件模板的 OS 环境变量,请参见 %s。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "仅接受 TLS 加密的 frpc 连接。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "自动生成私钥的路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "令牌来源文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "HTTP 请求自定义 404 页面的路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "TLS 证书文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "TLS 私钥文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "HTTPS Web 服务器使用的证书文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "HTTPS Web 服务器使用的私钥文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "受信任 CA 证书文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "插件地址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "插件名称" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "插件操作" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "插件路径" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "HTTP 虚拟主机请求端口。留空或设为 0 表示禁用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "HTTPS 虚拟主机请求端口。留空或设为 0 表示禁用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "TCPMUX HTTP CONNECT 请求端口。留空或设为 0 表示禁用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "端口必须是 0 到 65535 之间的数字。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "端口必须介于 0 到 65535 之间。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "端口必须介于 1 到 65535 之间。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "端口范围起始值不能大于结束值。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "frps 监听的端口。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" "允许客户端绑定的端口。可使用单个端口(如 3001)或范围(如 2000-3000)。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "SSH 隧道网关的私钥文件。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "代理绑定地址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "QUIC 绑定端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "QUIC 保活周期" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "QUIC 最大空闲超时" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "QUIC 最大传入流数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "运行中" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "崩溃时重启" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "虚拟主机 HTTP 服务器响应头超时时间,单位为秒。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "NAT 打洞策略数据保留时间。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "以此组权限运行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "以此用户权限运行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "SSH 隧道" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "SSH 隧道 authorized_keys 文件" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "SSH 隧道自动生成私钥路径" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "SSH 隧道绑定端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "SSH 隧道网关绑定端口。留空表示禁用此功能。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "SSH 隧道私钥文件" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "向 frpc 发送具体错误详情。" @@ -524,210 +532,210 @@ msgstr "向 frpc 发送具体错误详情。" msgid "Server" msgstr "服务端" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "跳过检查 OIDC 令牌颁发者是否匹配配置的颁发者。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "跳过检查 OIDC 令牌是否过期。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "启动设置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "子域主机" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "TCP 保活" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "TCP 保活间隔。负值表示禁用保活。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP 多路复用" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "TCP mux 保活间隔" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "TCPMUX HTTP CONNECT 端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "TCPMUX 透传" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "TLS 证书路径" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "启用 Web HTTPS 时必须填写 TLS 证书路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "TLS 私钥路径" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "启用 Web HTTPS 时必须填写 TLS 私钥路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "TLS 受信任 CA 路径" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "令牌" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "令牌和令牌来源互斥。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "令牌来源命令" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "令牌来源命令参数" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "令牌来源类型为 exec 时必须填写令牌来源命令。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "令牌来源环境变量" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "令牌来源文件" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "令牌来源类型为文件时必须填写令牌来源文件路径。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "令牌来源类型" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "用于认证的令牌。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "传输设置" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "UDP 数据包大小" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "UDP 数据包大小,单位为字节。应与 frpc 匹配。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" "KCP 使用的 UDP 端口。留空表示禁用 KCP。请勿与 QUIC 复用同一个 UDP 端口。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" "QUIC 使用的 UDP 端口。留空表示禁用 QUIC。请勿与 KCP 复用同一个 UDP 端口。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "唯一的 HTTP 插件名称。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "请使用单个端口(如 3001)或端口范围(如 2000-3000)。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "用户连接超时" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "验证插件 TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "当插件地址使用 HTTPS 时验证 HTTP 插件的 TLS 证书。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "Vhost HTTP 端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "Vhost HTTP 超时" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "Vhost HTTPS 端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Web 服务器" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Web 服务器地址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Web 服务器资源目录。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Web 服务器绑定地址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Web 服务器密码" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Web 服务器密码。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Web 服务器端口" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "Web 服务器端口。留空或设为 0 表示禁用 Web 服务器。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Web 服务器用户" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Web 服务器用户名。" @@ -735,11 +743,11 @@ msgstr "Web 服务器用户名。" msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp 服务器" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "此 HTTP 插件处理的 frps 操作。" diff --git a/luci-app-frps/po/zh_Hant/frps.po b/luci-app-frps/po/zh_Hant/frps.po index 512f3411..b1766cc6 100644 --- a/luci-app-frps/po/zh_Hant/frps.po +++ b/luci-app-frps/po/zh_Hant/frps.po @@ -12,79 +12,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2026.9.dev0\n" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:982 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:992 msgid "Access Control" msgstr "存取控制" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1008 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1018 msgid "Add new HTTP plugin..." msgstr "新增新的 HTTP 外掛..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:256 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:266 msgid "Additional auth scopes" msgstr "額外認證範圍" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:144 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 msgid "Additional configs" msgstr "額外設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:257 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:267 msgid "Additional scopes to include authentication information." msgstr "包含驗證資訊的附加作用域。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:154 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:164 msgid "Address that frps binds to." msgstr "frps 繫結的位址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:200 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:210 msgid "Address that proxy listeners bind to." msgstr "代理監聽器繫結的位址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 msgid "Allow ports" msgstr "允許連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:449 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:459 msgid "Assets dir" msgstr "資產目錄" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:350 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:360 msgid "Audience OIDC tokens should contain." msgstr "OIDC 權杖應包含的受眾。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:978 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:988 msgid "Authentication" msgstr "認證" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:247 msgid "Authentication method" msgstr "認證方式" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:248 msgid "Authentication method used to authenticate frpc." msgstr "用於驗證 frpc 的驗證方式。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:583 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 msgid "Authorized keys file for SSH tunnel gateway." msgstr "SSH 隧道閘道的 authorized_keys 檔案。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:153 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:163 msgid "Bind address" msgstr "繫結位址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:157 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:167 msgid "Bind port" msgstr "繫結連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:969 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 msgid "Collecting data ..." msgstr "收集資料中 ..." -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:323 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 msgid "Command arguments passed to token source exec." msgstr "傳遞給權杖來源執行命令的參數。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:300 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:310 msgid "" "Command used to obtain the token. The init script adds --allow-" "unsafe=TokenSourceExec when this source type is used." @@ -92,55 +92,55 @@ msgstr "" "用於取得權杖的命令。使用此來源類型時,init 指令碼會新增 --allow-" "unsafe=TokenSourceExec。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:977 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:987 msgid "Common Settings" msgstr "通用設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:378 msgid "Configuration key: log.level." msgstr "設定鍵:log.level。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:538 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:548 msgid "Configuration key: transport.quic.keepalivePeriod." msgstr "設定鍵:transport.quic.keepalivePeriod。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:542 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 msgid "Configuration key: transport.quic.maxIdleTimeout." msgstr "設定鍵:transport.quic.maxIdleTimeout。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:546 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:556 msgid "Configuration key: transport.quic.maxIncomingStreams." msgstr "設定鍵:transport.quic.maxIncomingStreams。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:227 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:237 msgid "Custom 404 page" msgstr "自訂 404 頁面" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:507 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:517 msgid "Detailed errors to client" msgstr "向用戶端傳送詳細錯誤" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:375 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 msgid "Disable log color" msgstr "停用紀錄顏色" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:376 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 msgid "Disable log colors when log output is console." msgstr "當日誌輸出到主控台時停用日誌顏色。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:264 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:274 msgid "Disabled" msgstr "已停用" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:220 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:230 msgid "Do not update traffic when TCPMUX passthrough is enabled." msgstr "啟用 TCPMUX 透傳時不更新流量。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:224 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:234 msgid "Domain suffix for subdomain-based HTTP/HTTPS proxies." msgstr "基於子域名的 HTTP/HTTPS 代理的域名字尾。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:454 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 msgid "" "Enable Go pprof debug/profiling endpoints on the web server. It only takes " "effect when web server port is set." @@ -148,7 +148,7 @@ msgstr "" "在 Web 伺服器上啟用 Go pprof 除錯/效能分析端點。僅在設定 Web 伺服器連接埠時生" "效。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:403 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 msgid "" "Enable HTTPS for the frps web server. This switch controls whether " "webServer.tls.certFile and webServer.tls.keyFile are emitted." @@ -156,35 +156,39 @@ msgstr "" "為 frps Web 伺服器啟用 HTTPS。此開關控制是否產生 webServer.tls.certFile 和 " "webServer.tls.keyFile。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:473 msgid "Enable Prometheus" msgstr "啟用 Prometheus" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:480 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:490 msgid "Enable TCP stream multiplexing. This setting must match frpc." msgstr "啟用 TCP 流多路複用。此設定必須與 frpc 一致。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:463 msgid "Enable pprof" msgstr "啟用 pprof" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:402 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +msgid "Enable service" +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:412 msgid "Enable web HTTPS" msgstr "啟用 Web HTTPS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 msgid "Environment variable" msgstr "環境變數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 msgid "Environment variable must use KEY=value format." msgstr "環境變數必須使用 KEY=value 格式。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:333 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:343 msgid "Environment variables passed to token source exec. Use KEY=value." msgstr "傳遞給權杖來源執行命令的環境變數。使用 KEY=value。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:464 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:474 msgid "" "Export Prometheus metrics on webServer /metrics API. It only takes effect " "when web server port is set." @@ -192,7 +196,7 @@ msgstr "" "在 webServer /metrics API 上匯出 Prometheus 指標。僅在設定 Web 伺服器連接埠時" "生效。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:145 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:155 msgid "" "Extra root-level configuration fragments included before generated HTTP " "plugin sections. Use raw settings for table-specific extra options." @@ -200,7 +204,7 @@ msgstr "" "在產生的 HTTP 外掛段之前包含額外的根層級設定片段。表相關的額外選項請使用原始" "設定。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:521 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:531 msgid "Force TLS" msgstr "強制 TLS" @@ -208,58 +212,62 @@ msgstr "強制 TLS" msgid "Grant access to LuCI app frps" msgstr "授予存取 luci-app-frps 的權限" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1003 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1013 msgid "HTTP Plugin Settings" msgstr "HTTP 外掛設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:781 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:791 msgid "HTTP plugin URL must include a host." msgstr "HTTP 外掛 URL 必須包含主機。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:777 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:787 msgid "HTTP plugin address must be a single address." msgstr "HTTP 外掛位址必須是單一位址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:593 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:799 +msgid "HTTP plugin address must be host:port or an http:// or https:// URL." +msgstr "" + +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 msgid "HTTP plugin backend address." msgstr "HTTP 外掛後端位址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:797 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:807 msgid "" "HTTP plugin operation must be a frps operation name, for example Login or " "NewProxy." msgstr "HTTP 外掛操作必須是 frps 操作名稱,例如 Login 或 NewProxy。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:765 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:775 msgid "HTTP plugin path must start with /." msgstr "HTTP 外掛路徑必須以 / 開頭。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:604 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 msgid "HTTP plugin request path." msgstr "HTTP 外掛請求路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:499 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:509 msgid "Heartbeat timeout" msgstr "心跳逾時" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:500 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:510 msgid "Heartbeat timeout in seconds." msgstr "心跳逾時時間,單位為秒。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:161 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:171 msgid "KCP bind port" msgstr "KCP 繫結連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:174 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:193 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:184 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 msgid "KCP bind port and QUIC bind port must be different." msgstr "KCP 繫結連接埠和 QUIC 繫結連接埠必須不同。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:492 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:502 msgid "Keepalive interval for TCP mux." msgstr "TCP 多路複用保活間隔。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:261 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:271 msgid "" "Load token from an external source. File reads the token from a local file; " "exec runs a command and requires frp unsafe permission. Mutually exclusive " @@ -268,254 +276,254 @@ msgstr "" "從外部來源載入權杖。file 從本地檔案讀取權杖;exec 執行命令並需要 frp unsafe " "權限。與 auth.token 互斥。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:984 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:994 msgid "Log Settings" msgstr "日誌設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:377 msgid "Log level" msgstr "紀錄等級" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:371 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 msgid "Log max days" msgstr "紀錄最大天數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:373 msgid "Log output" msgstr "日誌輸出" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:374 msgid "Log output path or console." msgstr "日誌輸出路徑或 console。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 msgid "Log stderr" msgstr "紀錄 stderr" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:102 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:112 msgid "Log stdout" msgstr "紀錄 stdout" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:475 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:485 msgid "Max pool count" msgstr "最大連線池數量" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:560 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 msgid "Max ports per client" msgstr "每個用戶端最大連接埠數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:372 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 msgid "Maximum number of days to keep logs." msgstr "保留日誌的最大天數。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:476 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:486 msgid "Maximum pool count for each proxy." msgstr "每個代理的最大連線池數量。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:561 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 msgid "Maximum ports each client can use. 0 means no limit." msgstr "每個用戶端可使用的最大連接埠數。0 表示不限制。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:504 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:514 msgid "Maximum time to wait for a work connection." msgstr "等待工作連線的最長時間。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:564 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 msgid "NAT hole analysis reserve hours" msgstr "NAT 打洞分析保留小時數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "NOT RUNNING" msgstr "未執行" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:349 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:359 msgid "OIDC audience" msgstr "OIDC 受眾" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:345 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:355 msgid "OIDC issuer" msgstr "OIDC 簽發者" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:346 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:356 msgid "OIDC issuer used to verify tokens." msgstr "用於驗證權杖的 OIDC 頒發者。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:353 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:363 msgid "OIDC skip expiry check" msgstr "OIDC 跳過過期檢查" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:357 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:367 msgid "OIDC skip issuer check" msgstr "OIDC 跳過簽發者檢查" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:136 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:146 msgid "OS environments passed to frp for config file template, see %s." msgstr "傳遞給 frp 設定檔案模板的 OS 環境變數,請參見 %s。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:522 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:532 msgid "Only accept TLS-encrypted frpc connections." msgstr "僅接受 TLS 加密的 frpc 連線。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:579 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 msgid "Path for auto-generated private key." msgstr "自動生成私鑰的路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:277 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:287 msgid "Path of token file." msgstr "權杖來源檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:228 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:238 msgid "Path to custom 404 page for HTTP requests." msgstr "HTTP 請求自訂 404 頁面的路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:526 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:536 msgid "Path to the TLS certificate file." msgstr "TLS 憑證檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:530 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:540 msgid "Path to the TLS private key file." msgstr "TLS 私鑰檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:414 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:424 msgid "Path to the certificate file used by the HTTPS web server." msgstr "HTTPS Web 伺服器使用的憑證檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:432 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:442 msgid "Path to the private key file used by the HTTPS web server." msgstr "HTTPS Web 伺服器使用的私鑰檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:534 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:544 msgid "Path to the trusted CA certificate file." msgstr "受信任 CA 憑證檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:602 msgid "Plugin address" msgstr "外掛位址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:598 msgid "Plugin name" msgstr "外掛名稱" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:614 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:624 msgid "Plugin operations" msgstr "外掛操作" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:603 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:613 msgid "Plugin path" msgstr "外掛路徑" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:204 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:214 msgid "Port for HTTP virtual host requests. Empty or 0 disables it." msgstr "HTTP 虛擬主機請求連接埠。留空或設為 0 表示停用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:208 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:218 msgid "Port for HTTPS virtual host requests. Empty or 0 disables it." msgstr "HTTPS 虛擬主機請求連接埠。留空或設為 0 表示停用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:216 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:226 msgid "Port for TCPMUX HTTP CONNECT requests. Empty or 0 disables it." msgstr "TCPMUX HTTP CONNECT 請求連接埠。留空或設為 0 表示停用。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:719 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:729 msgid "Port must be a number between 0 and 65535." msgstr "連接埠必須是 0 到 65535 之間的數字。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:723 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:733 msgid "Port must be between 0 and 65535." msgstr "連接埠必須介於 0 到 65535 之間。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:742 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:752 msgid "Port must be between 1 and 65535." msgstr "連接埠必須介於 1 到 65535 之間。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:745 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:755 msgid "Port range start must not be greater than end." msgstr "連接埠範圍起始值不能大於結束值。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:158 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:168 msgid "Port that frps listens on." msgstr "frps 監聽的連接埠。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:552 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:562 msgid "" "Ports clients are allowed to bind. Use single port like 3001 or range like " "2000-3000." msgstr "" "允許用戶端繫結的連接埠。可使用單個連接埠(如 3001)或範圍(如 2000-3000)。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:585 msgid "Private key file for SSH tunnel gateway." msgstr "SSH 隧道閘道的私鑰檔案。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:199 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:209 msgid "Proxy bind address" msgstr "代理繫結位址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:180 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:190 msgid "QUIC bind port" msgstr "QUIC 繫結連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:537 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:547 msgid "QUIC keepalive period" msgstr "QUIC 保活週期" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:541 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:551 msgid "QUIC max idle timeout" msgstr "QUIC 最大空閒逾時" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:545 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:555 msgid "QUIC max incoming streams" msgstr "QUIC 最大傳入流數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:942 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 msgid "RUNNING" msgstr "執行中" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:125 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:135 msgid "Respawn when crashed" msgstr "崩潰時重生" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:212 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:222 msgid "Response header timeout for vhost HTTP server, in seconds." msgstr "虛擬主機 HTTP 伺服器回應標頭逾時時間,單位為秒。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:565 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:575 msgid "Retention time for NAT hole punching strategy data." msgstr "NAT 打洞策略資料保留時間。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:123 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:133 msgid "Run daemon as group" msgstr "以此群組身分執行常駐程式" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:122 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:132 msgid "Run daemon as user" msgstr "以此使用者身分執行常駐程式" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:983 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:993 msgid "SSH Tunnel" msgstr "SSH 隧道" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:582 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:592 msgid "SSH tunnel authorized keys file" msgstr "SSH 隧道 authorized_keys 檔案" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:578 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:588 msgid "SSH tunnel auto-generated private key path" msgstr "SSH 隧道自動產生私鑰路徑" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:570 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:580 msgid "SSH tunnel bind port" msgstr "SSH 隧道繫結連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:571 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:581 msgid "SSH tunnel gateway bind port. Empty disables this feature." msgstr "SSH 隧道閘道繫結連接埠。留空表示停用此功能。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:574 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:584 msgid "SSH tunnel private key file" msgstr "SSH 隧道私鑰檔案" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:508 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:518 msgid "Send specific error details to frpc." msgstr "向 frpc 傳送具體錯誤詳情。" @@ -523,210 +531,210 @@ msgstr "向 frpc 傳送具體錯誤詳情。" msgid "Server" msgstr "伺服端" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:358 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:368 msgid "Skip checking whether OIDC token issuer matches configured issuer." msgstr "跳過檢查 OIDC 權杖頒發者是否匹配設定的頒發者。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:354 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:364 msgid "Skip checking whether the OIDC token is expired." msgstr "跳過檢查 OIDC 權杖是否過期。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:985 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:996 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:995 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:1006 msgid "Startup Settings" msgstr "啟動設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:223 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:233 msgid "Subdomain host" msgstr "子網域主機" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:495 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:505 msgid "TCP keepalive" msgstr "TCP 保活" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:496 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:506 msgid "TCP keepalive interval. Negative value disables keepalive." msgstr "TCP 保活間隔。負值表示停用保活。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:479 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:489 msgid "TCP mux" msgstr "TCP 多路複用器" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:491 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:501 msgid "TCP mux keepalive interval" msgstr "TCP mux 保活間隔" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:215 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:225 msgid "TCPMUX HTTP CONNECT port" msgstr "TCPMUX HTTP CONNECT 連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:219 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:229 msgid "TCPMUX passthrough" msgstr "TCPMUX 透傳" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:980 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:990 msgid "TLS / QUIC" msgstr "TLS / QUIC" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:413 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:525 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:423 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:535 msgid "TLS certificate path" msgstr "TLS 憑證路徑" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:425 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:435 msgid "TLS certificate path is required when web HTTPS is enabled." msgstr "啟用 Web HTTPS 時必須填寫 TLS 憑證路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:431 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:529 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:441 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:539 msgid "TLS private key path" msgstr "TLS 私鑰路徑" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:443 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:453 msgid "TLS private key path is required when web HTTPS is enabled." msgstr "啟用 Web HTTPS 時必須填寫 TLS 私鑰路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:533 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:543 msgid "TLS trusted CA path" msgstr "TLS 受信任 CA 路徑" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:251 msgid "Token" msgstr "權杖" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:250 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:280 msgid "Token and token source are mutually exclusive." msgstr "權杖和權杖來源互斥。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:299 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:309 msgid "Token source command" msgstr "權杖來源命令" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:322 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 msgid "Token source command arguments" msgstr "權杖來源命令參數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:316 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:326 msgid "Token source command is required when token source type is exec." msgstr "權杖來源類型為 exec 時必須填寫權杖來源命令。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:332 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:342 msgid "Token source environment" msgstr "權杖來源環境變數" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:276 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:286 msgid "Token source file" msgstr "權杖來源檔案" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:293 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:303 msgid "Token source file path is required when token source type is file." msgstr "權杖來源類型為檔案時必須填寫權杖來源檔案路徑。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:260 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:270 msgid "Token source type" msgstr "權杖來源類型" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:252 msgid "Token used for authentication." msgstr "用於驗證的權杖。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:979 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:989 msgid "Transport Settings" msgstr "傳輸設定" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:231 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:241 msgid "UDP packet size" msgstr "UDP 封包大小" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:232 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:242 msgid "UDP packet size in bytes. Should match frpc." msgstr "UDP 資料包大小,單位為位元組。應與 frpc 匹配。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:162 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:172 msgid "" "UDP port used for KCP. Empty disables KCP. Do not reuse the same UDP port as " "QUIC." msgstr "" "KCP 使用的 UDP 連接埠。留空表示停用 KCP。請勿與 QUIC 複用同一個 UDP 連接埠。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:181 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:191 msgid "" "UDP port used for QUIC. Empty disables QUIC. Do not reuse the same UDP port " "as KCP." msgstr "" "QUIC 使用的 UDP 連接埠。留空表示停用 QUIC。請勿與 KCP 複用同一個 UDP 連接埠。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:589 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:599 msgid "Unique HTTP plugin name." msgstr "唯一的 HTTP 外掛名稱。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:736 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:746 msgid "Use a single port like 3001 or a range like 2000-3000." msgstr "請使用單一連接埠(如 3001)或連接埠範圍(如 2000-3000)。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:503 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:513 msgid "User connection timeout" msgstr "使用者連線逾時" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:626 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:636 msgid "Verify plugin TLS" msgstr "驗證外掛 TLS" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:627 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:637 msgid "" "Verify the HTTP plugin TLS certificate when the plugin address uses HTTPS." msgstr "當外掛位址使用 HTTPS 時驗證 HTTP 外掛的 TLS 憑證。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:203 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:213 msgid "Vhost HTTP port" msgstr "虛擬主機 HTTP 連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:211 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:221 msgid "Vhost HTTP timeout" msgstr "虛擬主機 HTTP 逾時" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:207 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:217 msgid "Vhost HTTPS port" msgstr "虛擬主機 HTTPS 連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:981 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:991 msgid "Web Server" msgstr "Web 伺服器" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:381 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:391 msgid "Web server address" msgstr "Web 伺服器位址" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:450 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:460 msgid "Web server assets directory." msgstr "Web 伺服器資源目錄。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:382 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:392 msgid "Web server bind address." msgstr "Web 伺服器繫結位址。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:405 msgid "Web server password" msgstr "Web 伺服器密碼" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:406 msgid "Web server password." msgstr "Web 伺服器密碼。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:385 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:395 msgid "Web server port" msgstr "Web 伺服器連接埠" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:386 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:396 msgid "Web server port. Leave empty or set to 0 to disable the web server." msgstr "Web 伺服器連接埠。留空或設為 0 表示停用 Web 伺服器。" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:389 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:399 msgid "Web server user" msgstr "Web 伺服器使用者" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:390 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:400 msgid "Web server username." msgstr "Web 伺服器使用者名稱。" @@ -734,11 +742,11 @@ msgstr "Web 伺服器使用者名稱。" msgid "frp" msgstr "frp" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:945 -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:952 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:955 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:962 msgid "frp Server" msgstr "frp 伺服器" -#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:615 +#: applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js:625 msgid "frps operations handled by this HTTP plugin." msgstr "此 HTTP 外掛處理的 frps 操作。" diff --git a/luci-app-fwlive/Makefile b/luci-app-fwlive/Makefile index 97c4c219..0cb13678 100644 --- a/luci-app-fwlive/Makefile +++ b/luci-app-fwlive/Makefile @@ -11,8 +11,8 @@ LUCI_DESCRIPTION:=Live firewall log table (nftables/fw4 and iptables LOG) with f LUCI_DEPENDS:=+luci-base +logd +jsonfilter LUCI_PKGARCH:=all -PKG_VERSION:=0.1.38 -PKG_RELEASE:=10 +PKG_VERSION:=0.1.40 +PKG_RELEASE:=11 # Reproducible build: honor SOURCE_DATE_EPOCH from the build environment (set by docker-sdk.sh / CI). ifdef SOURCE_DATE_EPOCH diff --git a/luci-app-fwlive/htdocs/luci-static/resources/fwlive/constants.js b/luci-app-fwlive/htdocs/luci-static/resources/fwlive/constants.js index 27126b9f..c83beb97 100644 --- a/luci-app-fwlive/htdocs/luci-static/resources/fwlive/constants.js +++ b/luci-app-fwlive/htdocs/luci-static/resources/fwlive/constants.js @@ -9,7 +9,7 @@ */ return baseclass.extend({ /* Keep in sync with openwrt-feed/luci-app-fwlive/Makefile PKG_VERSION. */ - APP_VERSION: '0.1.38', + APP_VERSION: '0.1.40', ROW_LIMIT_OPTIONS: [25, 50, 100, 250, 500, 1000, 2000], DEFAULT_ROW_LIMIT: 100, /* Row pass/deny tint (#40): classic green/red default; accessible teal/orange */ diff --git a/luci-app-fwlive/root/usr/libexec/fwlive-log-filter.sh b/luci-app-fwlive/root/usr/libexec/fwlive-log-filter.sh index cc30b611..c8f41459 100755 --- a/luci-app-fwlive/root/usr/libexec/fwlive-log-filter.sh +++ b/luci-app-fwlive/root/usr/libexec/fwlive-log-filter.sh @@ -9,12 +9,10 @@ # Perf (#219): one jsonfilter for @.log[*] plus one awk classify. Process # count is constant per poll, not O(entries). # -# Entry point (pipeline). The classifier sibling is sourced and must not -# set -euo itself (#291 C3). +# Entry point (pipeline). The classifier sibling is sourced and must not set +# strict mode itself (#291 C3). set -eu -# pipefail: BusyBox ash supports it; Debian dash (host `sh`) rejects a -# bare `set -o pipefail`. Probe in a subshell (same class as #244). -# shellcheck disable=SC3040 # pipefail is ash/bash; dash probe is a subshell +# shellcheck disable=SC3040 (set -o pipefail) 2>/dev/null && set -o pipefail if ! command -v jsonfilter >/dev/null 2>&1; then diff --git a/luci-app-fwlive/root/usr/libexec/rpcd/fwlive b/luci-app-fwlive/root/usr/libexec/rpcd/fwlive index db38109a..85a7fe9e 100755 --- a/luci-app-fwlive/root/usr/libexec/rpcd/fwlive +++ b/luci-app-fwlive/root/usr/libexec/rpcd/fwlive @@ -9,15 +9,9 @@ # logging_status — WAN zone logging readiness (no args) # enable_wan_logging / disable_wan_logging — opt-in WAN zone log=1 (no args) # -# Entry point (rpcd plugin). Sourced helpers inherit these options. Do not -# copy set -euo into fwlive-logging.sh — prerm sources that file alone (#222) -# and keeps soft-fail / || return 1 contracts (#244, #291 C3). +# Entry point (rpcd plugin). Sourced helpers inherit these options. set -eu -# pipefail: BusyBox ash (device) supports it; Debian dash (host `sh` in -# CI) rejects `set -o pipefail` as a startup abort. Probe in a subshell — -# a failed `set` in-process is fatal even under `if` (same class as #244 -# failed exec). -# shellcheck disable=SC3040 # pipefail is ash/bash; dash probe is a subshell +# shellcheck disable=SC3040 (set -o pipefail) 2>/dev/null && set -o pipefail FW4_TAG='!fw4: ' @@ -405,25 +399,24 @@ poll_lines_from_input() { return 0 fi - # Device-only helper; not present on host CI runners. - # shellcheck disable=SC1091 - . /usr/share/libubox/jshn.sh - json_load "$input" 2>/dev/null || { - printf '%s' "$lines" - return 0 - } - - if json_select addresses 2>/dev/null; then - # json_get_var assigns into the named shell variable (jshn). - json_get_var first 1 - json_select .. - # shellcheck disable=SC2154 # set by json_get_var above - # Missing addresses[1] leaves first unset; set -u (#291 C3). - case "${first:-}" in - ''|*[!0-9]*) ;; - *) lines="$first" ;; - esac - fi + # jshn uses intentionally unset state variables. Keep nounset disabled in + # this subshell so strict mode is restored automatically on every exit. + _first=$( ( + set +u + . /usr/share/libubox/jshn.sh + # json_load masks a failing jshn exit through eval. Check the real + # parser once, then evaluate only its generated shell assignments. + _json_no_warning=1 + _json_code=$(jshn -r "$input" 2>/dev/null) || exit 1 + eval "$_json_code" || exit 1 + if ! json_select addresses 2>/dev/null; then exit 1; fi + json_get_var first 1 || exit 1 + printf '%s' "${first:-}" + ) ) || _first= + case "${_first:-}" in + ''|*[!0-9]*) ;; + *) lines="$_first" ;; + esac lines=$(poll_clamp_lines "$lines") @@ -608,27 +601,38 @@ resolve_addresses() { return 0 fi - # shellcheck disable=SC1091 - . /usr/share/libubox/jshn.sh - json_load "$input" 2>/dev/null || { + _addresses=$( ( + set +u + . /usr/share/libubox/jshn.sh + # json_load masks a failing jshn exit through eval. Check the real + # parser once, then evaluate only its generated shell assignments. + _json_no_warning=1 + _json_code=$(jshn -r "$input" 2>/dev/null) || exit 1 + eval "$_json_code" || exit 1 + if ! json_select addresses 2>/dev/null; then exit 0; fi + idx=1 + # shellcheck disable=SC2154 + while json_get_type atype "$idx" && [ "$atype" = string ]; do + json_get_var ip "$idx" || exit 1 + # Preserve JSON element boundaries in the newline transport. + # Invalid addresses (including embedded newlines) never leave it. + if is_resolvable_address "${ip:-}"; then + printf '%s\n' "$ip" + fi + idx=$((idx + 1)) + done + ) ) || { printf '{"names":{},"error":"invalid_input"}' return 0 } - - if json_select addresses 2>/dev/null; then - idx=1 - # json_get_type / json_get_var assign into named shell variables (jshn). - # shellcheck disable=SC2154 - while json_get_type atype "$idx" && [ "$atype" = string ]; do + while IFS= read -r ip; do [ "$count" -ge "$RESOLVE_MAX" ] && break # Abort cleanly once the whole-call wall-clock budget is spent; # never START a lookup past the budget. now=$(date +%s) [ $((now - start)) -ge "$RESOLVE_BUDGET" ] && break - json_get_var ip "$idx" # Missing/empty element: set -u cannot read bare $ip (#291 C3). if ! is_resolvable_address "${ip:-}"; then - idx=$((idx + 1)) continue fi # NXDOMAIN / timeout: resolve_hostname returns 1. set -e @@ -638,10 +642,9 @@ resolve_addresses() { map_add "$ip" "$name" count=$((count + 1)) fi - idx=$((idx + 1)) - done - json_select .. - fi + done < 0; + }); function normalizeSchedulerValue(value) { if (value == null) @@ -43,6 +52,27 @@ return L.view.extend({ return normalized; } + // Every out-of-tree v0.9x path manager (default/fullmesh/ndiffports/ + // binder/netlink) is an in-kernel one, so on a kernel that registers its + // path managers by name they all mean the same thing: 'kernel'. A config + // upgraded from that stack, or restored from such a backup, still carries + // one of those names, which is not in the list and would leave the + // dropdown showing nothing. + function normalizePathManagerValue(value) { + if (value == null) + return value; + + var normalized = String(value).trim(); + + if (normalized === '' || availablePathManagers.indexOf(normalized) >= 0) + return normalized; + + if (availablePathManagers.indexOf('kernel') >= 0) + return 'kernel'; + + return normalized; + } + m = new form.Map('network', _('MPTCP'),_('Networks MPTCP settings.')); s = m.section(form.TypedSection, 'globals'); @@ -62,14 +92,28 @@ return L.view.extend({ o.value(0, _("disable")); } - o = s.option(form.ListValue, "mptcp_path_manager", _("Multipath TCP path-manager"), _("Default is fullmesh")); - o.value("default", _("default")); - o.value("fullmesh", "fullmesh"); + if (availablePathManagers.length > 0) { + o = s.option(form.ListValue, "mptcp_path_manager", _("Multipath TCP path-manager"), + _("Path managers registered by the running kernel. 'kernel' is the in-kernel one, which creates the extra subflows itself; 'userspace' hands that over to mptcpd.")); + availablePathManagers.forEach(function(name) { + o.value(name, name); + }); + o.cfgvalue = function(section_id) { + return normalizePathManagerValue(uci.get('network', section_id, 'mptcp_path_manager')); + }; + o.write = function(section_id, value) { + uci.set('network', section_id, 'mptcp_path_manager', normalizePathManagerValue(value)); + }; + } else { + o = s.option(form.ListValue, "mptcp_path_manager", _("Multipath TCP path-manager"), _("Default is fullmesh")); + o.value("default", _("default")); + o.value("fullmesh", "fullmesh"); - if (parseFloat(boardinfo.kernel.substring(0,4)) < 6) { - o.value("ndiffports", "ndiffports"); - o.value("binder", "binder"); - o.value("netlink", _("Netlink")); + if (parseFloat(boardinfo.kernel.substring(0,4)) < 6) { + o.value("ndiffports", "ndiffports"); + o.value("binder", "binder"); + o.value("netlink", _("Netlink")); + } } var scheduler = s.option(form.ListValue, "mptcp_scheduler", _("Multipath TCP scheduler"), _('BPF schedulers (not available on all platforms):') + '
' + diff --git a/luci-app-mptcp/root/usr/share/rpcd/acl.d/luci-app-mptcp.json b/luci-app-mptcp/root/usr/share/rpcd/acl.d/luci-app-mptcp.json index cdb82bfa..6fb23b6d 100644 --- a/luci-app-mptcp/root/usr/share/rpcd/acl.d/luci-app-mptcp.json +++ b/luci-app-mptcp/root/usr/share/rpcd/acl.d/luci-app-mptcp.json @@ -6,10 +6,11 @@ "file": { "/usr/lib/mptcpd": [ "list" ], "/usr/share/bpf/scheduler": [ "list" ], + "/proc/sys/net/mptcp/available_path_managers": [ "read" ], "/sbin/sysctl -n net.ipv4.tcp_available_congestion_control": [ "exec" ] }, "ubus": { - "file": [ "list", "exec" ], + "file": [ "read", "list", "exec" ], "system": [ "board" ], "network.interface": [ "dump" ], "luci.mptcp": [ diff --git a/luci-app-passwall/Makefile b/luci-app-passwall/Makefile index fa2c30df..b7056182 100644 --- a/luci-app-passwall/Makefile +++ b/luci-app-passwall/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-passwall PKG_VERSION:=26.9.9 -PKG_RELEASE:=262 +PKG_RELEASE:=263 PKG_PO_VERSION:=$(PKG_VERSION) PKG_CONFIG_DEPENDS:= \ diff --git a/luci-app-passwall/luasrc/controller/passwall.lua b/luci-app-passwall/luasrc/controller/passwall.lua index ced57b84..cb133656 100644 --- a/luci-app-passwall/luasrc/controller/passwall.lua +++ b/luci-app-passwall/luasrc/controller/passwall.lua @@ -556,7 +556,21 @@ function add_node() uci_set(uid, "group", group) end - uci_set(uid, "type", "Socks") + if api.is_finded("ipt2socks") then + uci_set(uid, "type", "Socks") + elseif api.finded_com("sing-box") then + uci_set(uid, "type", "sing-box") + elseif api.finded_com("xray") then + uci_set(uid, "type", "Xray") + elseif api.is_finded("sslocal") then + uci_set(uid, "type", "SS-Rust") + elseif api.is_finded("ssr-local") then + uci_set(uid, "type", "SSR") + elseif api.finded_com("hysteria") then + uci_set(uid, "type", "Hysteria2") + elseif api.is_finded("naive") then + uci_set(uid, "type", "Naiveproxy") + end if redirect == "1" then uci_save() diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua index 6001b1c0..a3655af1 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua @@ -47,20 +47,23 @@ end -- [[ ACLs Settings ]]-- s = m:section(NamedSection, arg[1], translate("ACLs"), translate("ACLs")) -s.addremove = false -s.dynamic = false + +s:tab("Main", translate("Main")) +s:tab("Proxy", translate("Proxy")) +s:tab("DNS", translate("DNS")) +s:tab("Log", translate("Log")) ---- Enable -o = s:option(Flag, "enabled", translate("Enable")) +o = s:taboption("Main", Flag, "enabled", translate("Enable")) o.default = 1 o.rmempty = false ---- Remarks -o = s:option(Value, "remarks", translate("Remarks")) +o = s:taboption("Main", Value, "remarks", translate("Remarks")) o.default = arg[1] o.rmempty = false -o = s:option(Value, "interface", translate("Source Interface")) +o = s:taboption("Main", Value, "interface", translate("Source Interface")) o:value("", translate("All")) local iface = api.get_network_devices() for _, d in ipairs(iface) do @@ -94,7 +97,7 @@ table.sort(mac_t, function(a,b) end) ---- Source -sources = s:option(DynamicList, "sources", translate("Source")) +sources = s:taboption("Main", DynamicList, "sources", translate("Source")) sources.description = "" o:depends({dns_shunt = "chinadns-ng", tcp_proxy_mode = "proxy", chn_list = "direct"}) -o = s:option(Flag, "force_https_soa", translate("Force HTTPS SOA"), translate("Force queries with qtype 65 to respond with an SOA record.")) +o = s:taboption("DNS", Flag, "force_https_soa", translate("Force HTTPS SOA"), translate("Force queries with qtype 65 to respond with an SOA record.")) o.default = "0" o.rmempty = false o:depends({dns_shunt = "chinadns-ng"}) -o = s:option(ListValue, "use_default_dns", translate("Default DNS")) +o = s:taboption("DNS", ListValue, "use_default_dns", translate("Default DNS")) o.default = "direct" o:value("remote", translate("Remote DNS")) o:value("direct", translate("Direct DNS")) o.description = desc .. "" o:depends({dns_shunt = "dnsmasq", tcp_proxy_mode = "proxy", chn_list = "direct"}) +---- Log +o = s:taboption("Log", Flag, "log", translate("Enable Node Log")) +o.default = 0 +o.rmempty = false +o:depends({ _acl_node_bool = "1", _diff_global_node = "1" }) + +o = s:taboption("Log", ListValue, "loglevel", "Sing-Box/Xray " .. translate("Log Level")) +o.default = "warn" +o:value("debug", "Debug") +o:value("info", "Info") +o:value("warn", "Warning") +o:value("error", "Error") +o:depends("log", "1") + +o = s:taboption("Log", DummyValue, "_node_log", translate("Log File")) +o.rawhtml = true +o.cfgvalue = function(t, n) + local log_file = api.TMP_PATH .. "/acl/" .. arg[1] .. "/node.log" + local log_url = api.url("get_redir_log") .. "?id=" .. arg[1] + local s = "%s  " % log_file + if api.fs.access(log_file) then + local btn = string.format( + '', + translate("View Log"), + log_url + ) + s = s .. btn + end + return s +end +o:depends("log", "1") + +o = s:taboption("Log", Flag, "log_chinadns_ng", translate("Enable") .. " ChinaDNS-NG " .. translate("Log")) +o.default = "0" +o.rmempty = false +o:depends("dns_shunt", "chinadns-ng") + +o = s:taboption("Log", DummyValue, "_chinadns_ng_log", translate("Log File")) +o.rawhtml = true +o.cfgvalue = function(t, n) + local log_file = api.TMP_PATH .. "/acl/" .. arg[1] .. "/chinadns_ng.log" + local log_url = api.url("get_chinadns_log") .. "?flag=" .. arg[1] + local s = "%s  " % log_file + if api.fs.access(log_file) then + local btn = string.format( + '', + translate("View Log"), + log_url + ) + s = s .. btn + end + return s +end +o:depends("log_chinadns_ng", "1") + local o_node = s.fields["node"] local shunt_list = {} @@ -536,7 +597,7 @@ for k, v in pairs(socks_list) do end for k, v in pairs(nodes_table) do if #normal_list == 0 then - s.fields["dns_mode"]:depends({ _acl_node_bool = "1" }) + s.fields["dns_mode"]:depends({ _acl_node_bool = "1", _diff_global_node = "1" }) break end if v.protocol and v.protocol == "_shunt" then @@ -544,16 +605,16 @@ for k, v in pairs(nodes_table) do o_node:value(v.id, v["remark"]) o_node.group[#o_node.group+1] = (v.group and v.group ~= "") and v.group or translate("default") - s.fields["xray_dns_mode"]:depends({ _acl_node_bool = "1", node = v.id }) + s.fields["xray_dns_mode"]:depends({ _acl_node_bool = "1", _diff_global_node = "1", node = v.id }) s.fields["_node_sel_shunt"]:depends({ node = v.id }) end if v.type == "sing-box" and has_singbox then o_node:value(v.id, v["remark"]) o_node.group[#o_node.group+1] = (v.group and v.group ~= "") and v.group or translate("default") - s.fields["singbox_dns_mode"]:depends({ _acl_node_bool = "1", node = v.id }) + s.fields["singbox_dns_mode"]:depends({ _acl_node_bool = "1", _diff_global_node = "1", node = v.id }) s.fields["_node_sel_shunt"]:depends({ node = v.id }) - s.fields["remote_rewrite_ttl"]:depends({ _acl_node_bool = "1", node = v.id }) + s.fields["remote_rewrite_ttl"]:depends({ _acl_node_bool = "1", _diff_global_node = "1", node = v.id }) end shunt_list[#shunt_list + 1] = v else @@ -562,21 +623,17 @@ for k, v in pairs(nodes_table) do end end -m:appendTemplate("/acl/config_footer", {section = arg[1]}) - ---[[ -- Shunt -if current_node.protocol == "_shunt" then +if current_node.protocol == "_shunt" and current_node[".name"] ~= NODE then local shunt_lua = loadfile("/usr/lib/lua/luci/model/cbi/passwall/client/include/shunt_options.lua") setfenv(shunt_lua, getfenv(1))(m, s, { - s_cfgid = s.section, - node_id = current_node_id, node = current_node, - verify_option = s.fields["node"] + verify_option = s.fields["node"], + tab = "Shunt", + tab_desc = translate("Shunt Rule"), }) end -m:appendTemplate("/acl/shunt", { shunt_list = api.jsonc.stringify(shunt_list), section = s.section }) -]]-- +m:appendTemplate("/include/node_change", { verify_option = s.fields["node"], shunt_list = api.jsonc.stringify(shunt_list) }) return api.return_map(m) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua index df893745..15de2e9d 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua @@ -112,6 +112,10 @@ o:value("", translate("Close")) o.group = {""} current_node_id = m:get(s.section, "node") +local node_value = s.fields["node"]:formvalue(s.section) +if node_value then + current_node_id = node_value +end current_node = current_node_id and m:get(current_node_id) or {} -- Shunt Start @@ -120,17 +124,10 @@ if (has_singbox or has_xray) and #nodes_table > 0 then if current_node.protocol == "_shunt" then local shunt_lua = loadfile("/usr/lib/lua/luci/model/cbi/passwall/client/include/shunt_options.lua") setfenv(shunt_lua, getfenv(1))(m, s, { - s_cfgid = s.section, - node_id = current_node_id, node = current_node, - socks_list = socks_list, - urltest_list = urltest_list, - balancing_list = balancing_list, - iface_list = iface_list, - normal_list = normal_list, verify_option = s.fields["node"], tab = "Shunt", - tab_desc = translate("Shunt Rule") + tab_desc = translate("Shunt Rule"), }) end else @@ -165,6 +162,11 @@ o = s:taboption("Main", Flag, "node_socks_bind_local", translate("Node") .. " So o.default = "1" o:depends("_node", "1") +o = s:taboption("Main", DummyValue, "node_save_before", "") +o.template = m:template_path("/cbi/hidevalue") +o.value = current_node[".name"] +o.cbid = function(self, section) return "node_save_before" end + o = s:taboption("Main", DummyValue, "_node", "") o.template = m:template_path("/cbi/hidevalue") o.value = "1" @@ -605,7 +607,7 @@ o:value("disable", translate("No Proxy")) o:value("proxy", translate("Proxy")) o.default = "proxy" -o = s:taboption("Proxy", DummyValue, "switch_mode", " ") +o = s:taboption("Proxy", DummyValue, "switch_mode", "") o.template = m:template_path("/global/proxy") ---- Check the transparent proxy component @@ -687,6 +689,8 @@ s:tab("maintain", translate("Maintain")) o = s:taboption("maintain", DummyValue, "") o.template = m:template_path("/global/backup") +m:appendTemplate("/include/node_change", { verify_option = s.fields["node"], shunt_list = api.jsonc.stringify(shunt_list) }) + -- [[ Socks Server ]]-- o = s:taboption("Main", Flag, "socks_enabled", "Socks " .. translate("Main switch")) o.rmempty = false @@ -824,7 +828,7 @@ for k, v in pairs(nodes_table) do end end -m:appendTemplate("/global/footer", {shunt_list = api.jsonc.stringify(shunt_list)}) +m:appendTemplate("/global/footer") m:appendTemplate("/global/status_bottom") m:appendTemplate("/cbi/sortable", {sectiontype = s2.sectiontype}) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/include/shunt_options.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/include/shunt_options.lua index 0528992a..22d5bac6 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/include/shunt_options.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/include/shunt_options.lua @@ -1,13 +1,28 @@ local m, s, data = ... -if not data.node_id or not data.node then +if not data.node or not data.node[".name"] then return end local api = m.api -local s_cfgid = data.s_cfgid -local current_node_id = data.node_id +local section_id = s.section +local current_node = data.node +local current_node_id = current_node[".name"] +local verify_option = data.verify_option local node_list = data.node_list or api.get_node_list() +local shunt_section_type = "shunt_option_list" + +if data.tab then + if #s.tab_names > 0 then + table.insert(s.tab_names, 2, data.tab) + s.tabs[data.tab] = { + title = data.tab_desc, + childs = { } + } + else + s:tab(data.tab, data.tab_desc) + end +end local groups = {} m:foreach("shunt_rules", function(s) @@ -16,6 +31,9 @@ m:foreach("shunt_rules", function(s) end end) +local node_save_before = luci.http.formvalue("node_save_before") +local load_shunt = luci.http.formvalue("load_shunt") + local function get_cfgvalue() return function(self, section) return m:get(current_node_id, self.option) @@ -23,8 +41,10 @@ local function get_cfgvalue() end local function get_write() return function(self, section, value) - if data.verify_option then - if data.verify_option:formvalue(section) == current_node_id then + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end + if verify_option then + if verify_option:formvalue(section) == current_node_id then m:set(current_node_id, self.option, value) end else @@ -34,8 +54,10 @@ local function get_write() end local function get_remove() return function(self, section) - if data.verify_option then - if data.verify_option:formvalue(section) == current_node_id then + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end + if verify_option then + if verify_option:formvalue(section) == current_node_id then m:del(current_node_id, self.option) end else @@ -44,10 +66,6 @@ local function get_remove() end end -if data.tab then - s:tab(data.tab, data.tab_desc) -end - local function add_option(class, option_name, option_title, option_desc) local a if data.tab then @@ -63,8 +81,8 @@ local function add_option(class, option_name, option_title, option_desc) a.write = get_write() a.remove = get_remove() end - if data.verify_option then - a:depends(data.verify_option.option, current_node_id) + if verify_option then + a:depends(verify_option.option, current_node_id) end return a end @@ -81,7 +99,7 @@ local function add_depends(o, deps) end end -if data.node.type == "Xray" then +if current_node.type == "Xray" then o = add_option(ListValue, "domainStrategy", translate("Domain Strategy")) o:value("AsIs") o:value("IPIfNonMatch") @@ -134,7 +152,7 @@ table.insert(shunt_rules, { s2 = m:section(Table, shunt_rules, " ") s2.config = m.config -s2.sectiontype = "shunt_option_list" +s2.sectiontype = shunt_section_type o = s2:option(DummyValue, "remarks", translate("Rule")) o.rawhtml = true @@ -157,9 +175,13 @@ _node.cfgvalue = function(self, section) return m:get(current_node_id, shunt_rules[section]["_node_option"]) or shunt_rules[section]["_node_default"] end _node.write = function(self, section, value) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:set(current_node_id, shunt_rules[section]["_node_option"], value) end _node.remove = function(self, section) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:del(current_node_id, shunt_rules[section]["_node_option"]) end @@ -170,9 +192,13 @@ o.cfgvalue = function(self, section) return m:get(current_node_id, shunt_rules[section]["_fakedns_option"]) end o.write = function(self, section, value) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:set(current_node_id, shunt_rules[section]["_fakedns_option"], value) end o.remove = function(self, section) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:del(current_node_id, shunt_rules[section]["_fakedns_option"]) end @@ -186,9 +212,13 @@ proxy_tag_node.cfgvalue = function(self, section) return m:get(current_node_id, shunt_rules[section]["_proxy_tag_option"]) end proxy_tag_node.write = function(self, section, value) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:set(current_node_id, shunt_rules[section]["_proxy_tag_option"], value) end proxy_tag_node.remove = function(self, section) + if node_save_before and node_save_before ~= current_node_id then return end + if load_shunt == "1" then return end return m:del(current_node_id, shunt_rules[section]["_proxy_tag_option"]) end @@ -204,4 +234,11 @@ for k1, v1 in pairs(node_list) do end end -m:appendTemplate("/include/shunt_options", {id = current_node_id, s_cfgid = s_cfgid or current_node_id, normal_list = api.jsonc.stringify(node_list.normal_list)}) +m:appendTemplate("/include/shunt_options", { + node_id = current_node_id, + section_id = section_id or current_node_id, + section_type = shunt_section_type, + tab_name = data.tab, + normal_list = api.jsonc.stringify(node_list.normal_list), + shunt_list = api.jsonc.stringify(node_list.shunt_list) +}) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua index 20f8ff3f..9c4315d0 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua @@ -61,7 +61,6 @@ end local types_dir = "/usr/lib/lua/luci/model/cbi/" .. api.appname .. "/client/type/" s.val = {} s.val["type"] = m:get(arg[1], "type") -s.val["protocol"] = m:get(arg[1], "protocol") if luci.http.formvalue("cbi.submit") == "1" then local formvalue_type = luci.http.formvalue(formvalue_key .. "type") @@ -72,34 +71,6 @@ end o = s:option(ListValue, "type", translate("Type")) -if api.is_finded("ipt2socks") then - local type_name = "Socks" - - s.fields["type"]:value(type_name, "Socks") - - if s.val["type"] == type_name then - local s2 = NamedSection(m, arg[1], "server") - s2.type_name = type_name - s2.option_prefix = "socks_" - - o = s2:option(ListValue, "del_protocol", " ") --始终隐藏,用于删除 protocol - o:depends({ __hide = "1" }) - o.rewrite_option = "protocol" - - o = s2:option(Value, "address", translate("Address (Support Domain Name)")) - - o = s2:option(Value, "port", translate("Port")) - o.datatype = "port" - - o = s2:option(Value, "username", translate("Username")) - - o = s2:option(Value, "password", translate("Password")) - o.password = true - - api.luci_types(s, s2) - end -end - local type_table = {} for filename in api.fs.dir(types_dir) do table.insert(type_table, filename) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/0_socks.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/0_socks.lua new file mode 100644 index 00000000..23856bad --- /dev/null +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/0_socks.lua @@ -0,0 +1,35 @@ +if not api.is_finded("ipt2socks") then + return +end + +-- [[ Socks ]] +local m, s1 = ... +local type_name = "Socks" + +s1.fields["type"]:value(type_name, "Socks") + +if s1.val["type"] and s1.val["type"] ~= type_name then + return +end + +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 +s.type_name = type_name +s.option_prefix = "socks_" +api.set_type_cbi(s) + +o = s:option(ListValue, "del_protocol", "") --ʼأɾ protocol +o:depends({ __hide = "1" }) +o.rewrite_option = "protocol" + +o = s:option(Value, "address", translate("Address (Support Domain Name)")) + +o = s:option(Value, "port", translate("Port")) +o.datatype = "port" + +o = s:option(Value, "username", translate("Username")) + +o = s:option(Value, "password", translate("Password")) +o.password = true + +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/1_sing-box.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/1_sing-box.lua index a4c032a7..3008a514 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/1_sing-box.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/1_sing-box.lua @@ -17,15 +17,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "singbox_" - -local formvalue_proto = luci.http.formvalue(formvalue_key .. "protocol") - -if formvalue_proto then s1.val["protocol"] = formvalue_proto end - -local arg_select_proto = luci.http.formvalue("select_proto") or "" +api.set_type_cbi(s) local ss_method_new_list = { "none", "aes-128-gcm", "aes-192-gcm", "aes-256-gcm", "chacha20-ietf-poly1305", "xchacha20-ietf-poly1305", "2022-blake3-aes-128-gcm", "2022-blake3-aes-256-gcm", "2022-blake3-chacha20-poly1305" @@ -72,24 +68,20 @@ end o:value("_urltest", translate("URLTest")) o:value("_shunt", translate("Shunt")) o:value("_iface", translate("Custom Interface")) -function o.custom_cfgvalue(self, section) - if arg_select_proto ~= "" then - return arg_select_proto - else - return m:get(section, self.config_option) - end + +local protocol_val = m:get(s.section, "protocol") +local formvalue_proto = s.fields["protocol"]:formvalue(s.section) +if formvalue_proto then + protocol_val = formvalue_proto end -local load_urltest_options = s1.val["protocol"] == "_urltest" or arg_select_proto == "_urltest" -local load_shunt_options = s1.val["protocol"] == "_shunt" or arg_select_proto == "_shunt" -local load_iface_options = s1.val["protocol"] == "_iface" or arg_select_proto == "_iface" +local load_urltest_options = protocol_val == "_urltest" +local load_shunt_options = protocol_val == "_shunt" +local load_iface_options = protocol_val == "_iface" local load_normal_options = true if load_urltest_options or load_shunt_options or load_iface_options then load_normal_options = nil end -if not arg_select_proto:find("_") then - load_normal_options = true -end local netdev_list = api.get_network_devices() local node_list = api.get_node_list() @@ -115,11 +107,11 @@ if load_urltest_options then -- [[ URLTest Start ]] end end -- 读取旧 DynamicList - function o.custom_cfgvalue(self, section) + function o.cfgvalue(self, section) return table.concat(m:get(section, "urltest_node") or {}, " ") end -- 写入保持 DynamicList - function o.custom_write(self, section, value) + function o.write(self, section, value) local old = m:get(section, "urltest_node") or {} local new, set = {}, {} for v in value:gmatch("%S+") do @@ -935,7 +927,7 @@ if not load_shunt_options then for k1, v1 in pairs(node_list) do if k1 ~= "shunt_list" and k1 ~= "iface_list" then for i, v in ipairs(v1) do - if v.id ~= arg[1] then + if v.id ~= s.section then o1:value(v.id, v.remark) o1.group[#o1.group+1] = (v.group and v.group ~= "") and v.group or translate("default") if k1 == "normal_list" then @@ -949,14 +941,15 @@ if not load_shunt_options then end end -api.luci_types(s1, s) +api.type_cbi_section(s1, s) if load_shunt_options then - local current_node = m:get(arg[1]) or {} local shunt_lua = loadfile("/usr/lib/lua/luci/model/cbi/passwall/client/include/shunt_options.lua") setfenv(shunt_lua, getfenv(1))(m, s1, { - node_id = arg[1], - node = current_node, + node = { + [".name"] = s.section, + type = type_name, + }, node_list = node_list, }) end diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/2_xray.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/2_xray.lua index 6ff9f508..5684127d 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/2_xray.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/2_xray.lua @@ -15,15 +15,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "xray_" - -local formvalue_proto = luci.http.formvalue(formvalue_key .. "protocol") - -if formvalue_proto then s1.val["protocol"] = formvalue_proto end - -local arg_select_proto = luci.http.formvalue("select_proto") or "" +api.set_type_cbi(s) local ss_method_list = { "aes-128-gcm", "aes-256-gcm", "chacha20-poly1305", "chacha20-ietf-poly1305", "xchacha20-poly1305", "xchacha20-ietf-poly1305", "2022-blake3-aes-128-gcm", "2022-blake3-aes-256-gcm", "2022-blake3-chacha20-poly1305" @@ -53,31 +49,26 @@ if api.compare_versions(xray_version, ">=", "1.8.12") then end o:value("_shunt", translate("Shunt")) o:value("_iface", translate("Custom Interface")) -function o.custom_cfgvalue(self, section) - if arg_select_proto ~= "" then - return arg_select_proto - else - return m:get(section, self.config_option) - end +local protocol_val = m:get(s.section, "protocol") +local formvalue_proto = s.fields["protocol"]:formvalue(s.section) +if formvalue_proto then + protocol_val = formvalue_proto end -local load_balancing_options = s1.val["protocol"] == "_balancing" or arg_select_proto == "_balancing" -local load_shunt_options = s1.val["protocol"] == "_shunt" or arg_select_proto == "_shunt" -local load_iface_options = s1.val["protocol"] == "_iface" or arg_select_proto == "_iface" +local load_balancing_options = protocol_val == "_balancing" +local load_shunt_options = protocol_val == "_shunt" +local load_iface_options = protocol_val == "_iface" local load_normal_options = true if load_balancing_options or load_shunt_options or load_iface_options then load_normal_options = nil end -if not arg_select_proto:find("_") then - load_normal_options = true -end local netdev_list = api.get_network_devices() local node_list = api.get_node_list() local fallback_list = {} local is_balancer = nil for k, e in ipairs(node_list.balancing_list or {}) do - if e.id ~= arg[1] then + if e.id ~= s.section then fallback_list[#fallback_list + 1] = { id = e["id"], remark = e["remark"], @@ -110,11 +101,11 @@ if load_balancing_options then -- [[ Load balancing Start ]] end end -- 读取旧 DynamicList - function o.custom_cfgvalue(self, section) + function o.cfgvalue(self, section) return table.concat(m:get(section, "balancing_node") or {}, " ") end -- 写入保持 DynamicList - function o.custom_write(self, section, value) + function o.write(self, section, value) local old = m:get(section, "balancing_node") or {} local new, set = {}, {} for v in value:gmatch("%S+") do @@ -213,7 +204,7 @@ if load_balancing_options then -- [[ Load balancing Start ]] local depth = get_fallback_depth(v.id) -- 超过最大套娃层数后,不允许继续选择 balancer if depth < MAX_FALLBACK_DEPTH - and not will_loop(arg[1], v.id) + and not will_loop(s.section, v.id) then o:value(v.id, v.remark) o.group[#o.group + 1] = (v.group and v.group ~= "") and v.group or translate("default") @@ -678,13 +669,13 @@ o.validate = function(self, value) if v then return v end return nil, "XHTTP Extra " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local raw = m:get(section, "xhttp_extra") if raw then return api.base64Decode(raw) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "xhttp_extra", api.base64Encode(value) or "") local success, data = pcall(api.jsonc.parse, value) if success and data then @@ -700,7 +691,7 @@ o.custom_write = function(self, section, value) m:del(section, "download_address") end end -o.custom_remove = function(self, section, value) +o.remove = function(self, section, value) m:del(section, "xhttp_extra") m:del(section, "download_address") end @@ -763,13 +754,13 @@ o.validate = function(self, value) if v then return v end return nil, "FinalMask " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local raw = m:get(section, "finalmask") if raw then return api.base64Decode(raw) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "finalmask", api.base64Encode(value) or "") end @@ -871,7 +862,7 @@ if not load_shunt_options then for k1, v1 in pairs(node_list) do if k1 ~= "shunt_list" and k1 ~= "iface_list" then for i, v in ipairs(v1) do - if v.id ~= arg[1] then + if v.id ~= s.section then o1:value(v.id, v.remark) o1.group[#o1.group+1] = (v.group and v.group ~= "") and v.group or translate("default") if k1 == "normal_list" then @@ -885,14 +876,16 @@ if not load_shunt_options then end end -api.luci_types(s1, s) +api.type_cbi_section(s1, s) if load_shunt_options then local current_node = m:get(arg[1]) or {} local shunt_lua = loadfile("/usr/lib/lua/luci/model/cbi/passwall/client/include/shunt_options.lua") setfenv(shunt_lua, getfenv(1))(m, s1, { - node_id = arg[1], - node = current_node, + node = { + [".name"] = s.section, + type = type_name, + }, node_list = node_list, }) end diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/3_ss-rust.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/3_ss-rust.lua index 1c7562dc..30f63d71 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/3_ss-rust.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/3_ss-rust.lua @@ -12,9 +12,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "ssrust_" +api.set_type_cbi(s) local ssrust_encrypt_method_list = { "none", "plain", @@ -69,4 +71,4 @@ end o = s:option(Value, "plugin_opts", translate("opts")) o:depends({ plugin_enabled = true }) -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/4_ssr.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/4_ssr.lua index e86e470b..542ee14d 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/4_ssr.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/4_ssr.lua @@ -12,9 +12,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "ssr_" +api.set_type_cbi(s) local ssr_encrypt_method_list = { "none", "table", "rc2-cfb", "rc4", "rc4-md5", "rc4-md5-6", "aes-128-cfb", @@ -63,4 +65,4 @@ o.default = 300 o = s:option(Flag, "tcp_fast_open", "TCP " .. translate("Fast Open"), translate("Need node support required")) o.default = 0 -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/5_hysteria2.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/5_hysteria2.lua index d9b4d600..1ec43518 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/5_hysteria2.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/5_hysteria2.lua @@ -12,13 +12,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "hysteria2_" - -local function _n(name) - return s.option_prefix .. name -end +api.set_type_cbi(s) o = s:option(ListValue, "protocol", translate("Protocol")) o:value("udp", "UDP") @@ -32,22 +30,22 @@ o:depends({ realms = false }) o = s:option(Value, "hop", translate("Port hopping range")) o.description = translate("Format as 1000:2000 or 1000-2000 Multiple groups are separated by commas (,).") -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = false }) o = s:option(Value, "hop_interval", translate("Hop Interval(second)"), translate("Supports a fixed value or a random range (e.g., 30, 5-30), minimum 5.")) o.datatype = "or(uinteger,portrange)" o.placeholder = "30" o.default = "30" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = false }) o = s:option(Flag, "realms", translate("Realms")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "realm_url", translate("Realm URL"), translate("Example:") .. "realm://public@realm.hy2.io/your-realm-name") -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o.validate = function(self, value) value = api.trim(value) @@ -58,26 +56,26 @@ end o = s:option(DynamicList, "realm_stun", translate("Realm STUN")) o.default = { "stun.sip.us:3478", "stun.nextcloud.com:3478", "global.stun.twilio.com:3478" } -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o = s:option(Flag, "realm_upnp", translate("Enable") .. " UPnP/NAT-PMP", translate("Enable UPnP/NAT-PMP port mapping on your gateway to improve hole punching success.")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o = s:option(Value, "auth_password", translate("Auth Password")) o.password = true -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(ListValue, "obfs_type", translate("Obfs Type")) o:value("", translate("Disable")) o:value("salamander") o:value("gecko") -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "obfs_password", translate("Obfs Password")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ obfs_type = "salamander" }) o:depends({ obfs_type = "gecko" }) @@ -86,14 +84,14 @@ o.datatype = "uinteger" o.placeholder = "512" o.default = "512" o:depends({ obfs_type = "gecko" }) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "obfs_MaxPacketSize", translate("Gecko Packet Size (max)")) o.datatype = "uinteger" o.placeholder = "1200" o.default = "1200" o:depends({ obfs_type = "gecko" }) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Flag, "fast_open", translate("Fast Open")) o.default = "0" @@ -106,28 +104,28 @@ o.default = "0" o = s:option(Value, "tls_pinSHA256", translate("PinSHA256"),translate("Certificate fingerprint")) o = s:option(Value, "up_mbps", translate("Max upload Mbps")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "down_mbps", translate("Max download Mbps")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "recv_window", translate("QUIC stream receive window")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "recv_window_conn", translate("QUIC connection receive window")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "idle_timeout", translate("Idle Timeout"), translate("Units:seconds") .. " (4~120)") o.datatype = "range(4,120)" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "keep_alive_period", translate("QUIC KeepAlive interval"), translate("Units:seconds") .. " (2~60)") o.datatype = "range(2,60)" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Flag, "disable_mtu_discovery", translate("Disable MTU detection")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Flag, "ech", translate("ECH")) @@ -145,6 +143,6 @@ end o = s:option(Flag, "lazy_start", translate("Lazy Start")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/6_naive.lua b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/6_naive.lua index b00c0c3f..83dc7d91 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/client/type/6_naive.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/client/type/6_naive.lua @@ -12,9 +12,11 @@ if s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "naive_" +api.set_type_cbi(s) o = s:option(ListValue, "protocol", translate("Protocol")) o:value("https", translate("HTTPS")) @@ -30,4 +32,4 @@ o = s:option(Value, "username", translate("Username")) o = s:option(Value, "password", translate("Password")) o.password = true -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/0_socks.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/0_socks.lua index 3b267d62..91acbf79 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/0_socks.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/0_socks.lua @@ -15,9 +15,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "socks_" +api.set_type_cbi(s) o = s:option(Value, "port", translate("Listen Port")) o.datatype = "port" @@ -44,4 +46,4 @@ o:depends({ firewall_allow = true }) o = s:option(Flag, "log", translate("Log")) o.default = "1" -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/1_sing-box.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/1_sing-box.lua index 592028c3..05fb9724 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/1_sing-box.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/1_sing-box.lua @@ -21,9 +21,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "singbox_" +api.set_type_cbi(s) local singbox_tags = luci.sys.exec(singbox_bin .. " version | grep 'Tags:' | awk '{print $2}'") @@ -48,13 +50,13 @@ o.validate = function(self, value) if v then return v end return nil, translate("Custom Config") .. " " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local config_str = m:get(section, "config_str") if config_str then return api.base64Decode(config_str) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "config_str", api.base64Encode(value) or "") end @@ -562,4 +564,4 @@ o:value("warn") o:value("error") o:depends({ log = true }) -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/2_xray.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/2_xray.lua index 11ec4fab..02dfc68d 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/2_xray.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/2_xray.lua @@ -19,9 +19,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "xray_" +api.set_type_cbi(s) local ss_method_list = { "aes-128-gcm", "aes-256-gcm", "chacha20-poly1305", "xchacha20-poly1305", "2022-blake3-aes-128-gcm", "2022-blake3-aes-256-gcm", "2022-blake3-chacha20-poly1305" @@ -44,13 +46,13 @@ o.validate = function(self, value) if v then return v end return nil, translate("Custom Config") .. " " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local config_str = m:get(section, "config_str") if config_str then return api.base64Decode(config_str) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "config_str", api.base64Encode(value) or "") end @@ -257,8 +259,8 @@ end -- [[ TLS部分 ]] -- o = s:option(FileUpload, "tls_certificateFile", translate("Public key absolute path"), translate("as:") .. "/etc/ssl/fullchain.pem") -o.default = m:get(s.section, "tls_certificateFile") or "/etc/config/ssl/" .. arg[1] .. ".pem" -if o and o:formvalue(arg[1]) then o.default = o:formvalue(arg[1]) end +o.default = m:get(s.section, "tls_certificateFile") or "/etc/config/ssl/" .. s.section .. ".pem" +if o and o:formvalue(s.section) then o.default = o:formvalue(s.section) end o:depends({ tls = true, reality = false }) o:depends({ protocol = "hysteria2"}) o.validate = function(self, value, t) @@ -273,8 +275,8 @@ o.validate = function(self, value, t) end o = s:option(FileUpload, "tls_keyFile", translate("Private key absolute path"), translate("as:") .. "/etc/ssl/private.key") -o.default = m:get(s.section, "tls_keyFile") or "/etc/config/ssl/" .. arg[1] .. ".key" -if o and o:formvalue(arg[1]) then o.default = o:formvalue(arg[1]) end +o.default = m:get(s.section, "tls_keyFile") or "/etc/config/ssl/" .. s.section .. ".key" +if o and o:formvalue(s.section) then o.default = o:formvalue(s.section) end o:depends({ tls = true, reality = false }) o:depends({ protocol = "hysteria2"}) o.validate = function(self, value, t) @@ -396,13 +398,13 @@ o:depends({ use_finalmask = true }) o.rows = 10 o.wrap = "off" o.datatype = "json" -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local raw = m:get(section, "finalmask") if raw then return api.base64Decode(raw) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "finalmask", api.base64Encode(value) or "") end @@ -549,4 +551,4 @@ o:value("warning") o:value("error") o:depends({ log = true }) -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/3_ss-rust.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/3_ss-rust.lua index 851247af..9c7f4cc2 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/3_ss-rust.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/3_ss-rust.lua @@ -16,9 +16,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "ssrust_" +api.set_type_cbi(s) local ssrust_encrypt_method_list = { "plain", "none", @@ -39,13 +41,13 @@ o.validate = function(self, value) if v then return v end return nil, translate("Custom Config") .. " " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local config_str = m:get(section, "config_str") if config_str then return api.base64Decode(config_str) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "config_str", api.base64Encode(value) or "") end @@ -88,4 +90,4 @@ o = s:option(Flag, "log", translate("Log")) o.default = "1" o.rmempty = false -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/4_ssr.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/4_ssr.lua index 8e54f6fd..9453bdf4 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/4_ssr.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/4_ssr.lua @@ -16,9 +16,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "ssr_" +api.set_type_cbi(s) local ssr_encrypt_method_list = { "none", "table", "rc2-cfb", "rc4", "rc4-md5", "rc4-md5-6", "aes-128-cfb", @@ -52,13 +54,13 @@ o.validate = function(self, value) if v then return v end return nil, translate("Custom Config") .. " " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local config_str = m:get(section, "config_str") if config_str then return api.base64Decode(config_str) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "config_str", api.base64Encode(value) or "") end @@ -119,4 +121,4 @@ o = s:option(Flag, "log", translate("Log")) o.default = "1" o.rmempty = false -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/5_hysteria2.lua b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/5_hysteria2.lua index 9a037ff7..c7147f50 100644 --- a/luci-app-passwall/luasrc/model/cbi/passwall/server/type/5_hysteria2.lua +++ b/luci-app-passwall/luasrc/model/cbi/passwall/server/type/5_hysteria2.lua @@ -12,13 +12,11 @@ if s1.val["type"] and s1.val["type"] ~= type_name then return end -local s = NamedSection(m, arg[1], "server") +local s = NamedSection(m, arg[1], "tmp_" .. s1.sectiontype) +s.parent = s1 s.type_name = type_name s.option_prefix = "hysteria2_" - -local function _n(name) - return s.option_prefix .. name -end +api.set_type_cbi(s) o = s:option(Flag, "custom", translate("Use Custom Config")) @@ -33,13 +31,13 @@ o.validate = function(self, value) if v then return v end return nil, translate("Custom Config") .. " " .. translate("Must be JSON text!") end -o.custom_cfgvalue = function(self, section, value) +o.cfgvalue = function(self, section, value) local config_str = m:get(section, "config_str") if config_str then return api.base64Decode(config_str) end end -o.custom_write = function(self, section, value) +o.write = function(self, section, value) m:set(section, "config_str", api.base64Encode(value) or "") end @@ -55,11 +53,11 @@ o:depends({ custom = false }) o = s:option(Flag, "realms", translate("Realms")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(Value, "realm_url", translate("Realm URL"), translate("Example:") .. "realm://public@realm.hy2.io/your-realm-name") -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o.validate = function(self, value) value = api.trim(value) @@ -70,23 +68,23 @@ end o = s:option(DynamicList, "realm_stun", translate("Realm STUN")) o.default = { "stun.sip.us:3478", "stun.nextcloud.com:3478", "global.stun.twilio.com:3478" } -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o = s:option(Flag, "realm_upnp", translate("Enable") .. " UPnP/NAT-PMP", translate("Enable UPnP/NAT-PMP port mapping on your gateway to improve hole punching success.")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ realms = "1" }) o = s:option(ListValue, "obfs_type", translate("Obfs Type")) o:value("", translate("Disable")) o:value("salamander") o:value("gecko") -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(Value, "obfs_password", translate("Obfs Password")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ obfs_type = "salamander" }) o:depends({ obfs_type = "gecko" }) @@ -95,31 +93,31 @@ o.datatype = "uinteger" o.placeholder = "512" o.default = "512" o:depends({ obfs_type = "gecko" }) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Value, "obfs_MaxPacketSize", translate("Gecko Packet Size (max)")) o.datatype = "uinteger" o.placeholder = "1200" o.default = "1200" o:depends({ obfs_type = "gecko" }) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o = s:option(Flag, "udp", translate("UDP")) o.default = "1" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(Value, "up_mbps", translate("Max upload Mbps")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(Value, "down_mbps", translate("Max download Mbps")) -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(Flag, "ignoreClientBandwidth", translate("ignoreClientBandwidth")) o.default = "0" -o.rewrite_option = _n(o.option) +o.rewrite_option = o.option o:depends({ custom = false }) o = s:option(FileUpload, "tls_certificateFile", translate("Public key absolute path"), translate("as:") .. "/etc/ssl/fullchain.pem") @@ -181,4 +179,4 @@ o = s:option(Flag, "log", translate("Log")) o.default = "1" o.rmempty = false -api.luci_types(s1, s) +api.type_cbi_section(s1, s) diff --git a/luci-app-passwall/luasrc/passwall/api.lua b/luci-app-passwall/luasrc/passwall/api.lua index d9d3cf8f..c0f60b46 100644 --- a/luci-app-passwall/luasrc/passwall/api.lua +++ b/luci-app-passwall/luasrc/passwall/api.lua @@ -1537,110 +1537,88 @@ function return_map(map) return map end -function luci_types(s, s2) +function set_type_cbi(s) local cbi = require "luci.cbi" - local m = s.map - local id = s2.section - local type_name = s2.type_name - local option_prefix = s2.option_prefix - local fv_type - local field_type = s.fields["type"] - if field_type then - fv_type = field_type:formvalue(id) + local s1 = s.parent + function s.option(self, class, option, ...) + local obj = class(self.map, self, option, ...) + obj.config_option = option + obj.option_prefix = self.option_prefix + obj.option = self.option_prefix .. option + obj.cfgvalue = function(o_self, section) + if o_self.rewrite_option then + return o_self.map:get(section, o_self.rewrite_option) + else + return o_self.map:get(section, o_self.config_option) + end + end + obj.write = function(o_self, section, value) + if s1.fields["type"]:formvalue(self.section) == self.type_name then + local new_val = value + if util.instanceof(o_self, cbi.DynamicList) then + local new_t = {} + if type(value) == "table" then + new_t = table_remove_duplicates(value) + else + new_t = { value } + end + if o_self.cast == "string" then + new_val = table.concat(new_t, " ") + else + new_val = new_t + end + end + if o_self.rewrite_option then + o_self.map:set(section, o_self.rewrite_option, new_val) + else + o_self.map:set(section, o_self.config_option, new_val) + end + end + end + obj.remove = function(o_self, section) + if s1.fields["type"]:formvalue(self.section) == self.type_name then + if o_self.rewrite_option then + o_self.map:del(section, o_self.rewrite_option) + else + o_self.map:del(section, o_self.config_option) + end + end + end + obj.depends = function(o_self, field, value) + local deps + if type(field) == "string" then + deps = {} + deps[field] = value + else + deps = field + end + local new_deps = {} + for k, v in pairs(deps) do + local n_k = k + if self.fields[k] then + n_k = self.fields[k].option + end + new_deps[n_k] = v + end + new_deps["type"] = self.type_name + if next(new_deps) then + table.insert(o_self.deps, new_deps) + end + end + self:append(obj) + self.fields[option] = obj + return obj end +end + +function type_cbi_section(s, s2) for i, v in ipairs(s2.children) do local o = s2.children[i] - o.config_option = o.option - o.option_prefix = option_prefix - o.option = option_prefix .. o.option - if not o.not_rewrite then - o.cfgvalue = function(self, section) - -- Add a custom `custom_cfgvalue` attribute. If a custom `custom_cfgvalue` function exists, the custom `cfgvalue` logic will be used. - if self.custom_cfgvalue then - return self:custom_cfgvalue(section) - else - if self.rewrite_option then - return m:get(section, self.rewrite_option) - else - return m:get(section, self.config_option) - end - end - end - o.write = function(self, section, value) - if s.fields["type"]:formvalue(id) == type_name then - -- Add a custom `custom_write` attribute; if a custom `custom_write` function exists, then use the custom write logic. - if self.custom_write then - self:custom_write(section, value) - else - local new_val = value - if util.instanceof(self, cbi.DynamicList) then - local new_t = {} - if type(value) == "table" then - new_t = table_remove_duplicates(value) - else - new_t = { value } - end - if self.cast == "string" then - new_val = table.concat(new_t, " ") - else - new_val = new_t - end - end - if self.rewrite_option then - m:set(section, self.rewrite_option, new_val) - else - m:set(section, self.config_option, new_val) - end - end - end - end - o.remove = function(self, section) - if s.fields["type"]:formvalue(id) == type_name then - -- Add a custom `custom_remove` attribute; if a custom `custom_remove` function exists, use the custom remove logic. - if self.custom_remove then - self:custom_remove(section) - else - if self.rewrite_option then - m:del(section, self.rewrite_option) - else - m:del(section, self.config_option) - end - end - end - end + if #o.deps == 0 then + o:depends({ type = s2.type_name }) end - - local deps = o.deps - if #deps > 0 then - local function process_deps(dep) - local rewrite_deps = {} - for k, v in pairs(dep) do - if k:find("!") then - rewrite_deps[k] = v - else - rewrite_deps[option_prefix .. k] = v - end - end - if not rewrite_deps['!reverse'] then - rewrite_deps["type"] = type_name - end - return rewrite_deps - end - for index, value in ipairs(deps) do - local rewrite_deps = process_deps(value) - if rewrite_deps then - deps[index] = rewrite_deps - end - end - else - o:depends({ type = type_name }) - end - - if fv_type and fv_type ~= type_name then - o.rmempty = true - end - s:append(o) + s.fields[o.option] = o end end diff --git a/luci-app-passwall/luasrc/passwall/util_xray.lua b/luci-app-passwall/luasrc/passwall/util_xray.lua index 80d0d275..519497dd 100644 --- a/luci-app-passwall/luasrc/passwall/util_xray.lua +++ b/luci-app-passwall/luasrc/passwall/util_xray.lua @@ -44,6 +44,7 @@ function gen_outbound(flag, node, tag, proxy_table) local remarks = node.remarks local proxy_tag = nil + local dialer_proxy_tag = nil local fragment = nil local noise = nil local run_socks_instance = true @@ -86,12 +87,7 @@ function gen_outbound(flag, node, tag, proxy_table) node.stream_security = "none" proxy_tag = "socks <- " .. node_id else - if proxy_tag then - node.proxySettings = { - tag = proxy_tag, - transportLayer = true - } - end + dialer_proxy_tag = proxy_tag end if node.type == "Xray" then @@ -135,7 +131,6 @@ function gen_outbound(flag, node, tag, proxy_table) _flag = flag, _flag_proxy_tag = proxy_tag, tag = tag, - proxySettings = node.proxySettings or nil, protocol = node.protocol, mux = { enabled = (node.mux == "1") and true or false, @@ -143,7 +138,7 @@ function gen_outbound(flag, node, tag, proxy_table) xudpConcurrency = (node.mux == "1" and ((node.xudp_concurrency) and tonumber(node.xudp_concurrency) or 8)) or nil } or nil, -- 底层传输配置 - streamSettings = (node.streamSettings or node.protocol == "vmess" or node.protocol == "vless" or node.protocol == "socks" or node.protocol == "shadowsocks" or node.protocol == "trojan" or node.protocol == "hysteria") and { + streamSettings = (node.streamSettings or dialer_proxy_tag or node.protocol == "vmess" or node.protocol == "vless" or node.protocol == "socks" or node.protocol == "shadowsocks" or node.protocol == "trojan" or node.protocol == "hysteria") and { sockopt = { mark = 255, domainStrategy = node.domain_strategy or "UseIP", @@ -154,7 +149,8 @@ function gen_outbound(flag, node, tag, proxy_table) PrioritizeIPv6 = false, Interleave = 1, MaxConcurrentTry = 4 - } or nil + } or nil, + dialerProxy = dialer_proxy_tag, }, [(api.compare_versions(xray_version, "<", "26.7.11")) and "network" or "method"] = node.transport, -- Todo: Remove version check and "network" security = node.stream_security, @@ -1209,10 +1205,9 @@ function gen_config(var) end if preproxy_outbound then outbound.tag = preproxy_outbound.tag .. " -> " .. outbound.tag - outbound.proxySettings = { - tag = preproxy_outbound.tag, - transportLayer = true - } + outbound.streamSettings = outbound.streamSettings or {} + outbound.streamSettings.sockopt = outbound.streamSettings.sockopt or {} + outbound.streamSettings.sockopt.dialerProxy = preproxy_outbound.tag if not exist then last_insert_outbound = preproxy_outbound end @@ -1260,10 +1255,9 @@ function gen_config(var) if to_outbound then to_outbound.tag = outbound.tag .. " -> " .. to_outbound.tag if to_node.type == "Xray" then - to_outbound.proxySettings = { - tag = outbound.tag, - transportLayer = true - } + to_outbound.streamSettings = to_outbound.streamSettings or {} + to_outbound.streamSettings.sockopt = to_outbound.streamSettings.sockopt or {} + to_outbound.streamSettings.sockopt.dialerProxy = outbound.tag end table.insert(outbounds_table, to_outbound) default_outTag = to_outbound.tag diff --git a/luci-app-passwall/luasrc/view/passwall/acl/config_footer.htm b/luci-app-passwall/luasrc/view/passwall/acl/config_footer.htm deleted file mode 100644 index cb677b03..00000000 --- a/luci-app-passwall/luasrc/view/passwall/acl/config_footer.htm +++ /dev/null @@ -1,121 +0,0 @@ -<% -local map = self.map -local api = map.api -local sid = self.section --%> - diff --git a/luci-app-passwall/luasrc/view/passwall/acl/shunt.htm b/luci-app-passwall/luasrc/view/passwall/acl/shunt.htm deleted file mode 100644 index 27ad7fb2..00000000 --- a/luci-app-passwall/luasrc/view/passwall/acl/shunt.htm +++ /dev/null @@ -1,59 +0,0 @@ -<% -local map = self.map -local api = map.api -local appname = map.config -local section = self.section --%> - diff --git a/luci-app-passwall/luasrc/view/passwall/global/footer.htm b/luci-app-passwall/luasrc/view/passwall/global/footer.htm index d122cedd..bdacc409 100644 --- a/luci-app-passwall/luasrc/view/passwall/global/footer.htm +++ b/luci-app-passwall/luasrc/view/passwall/global/footer.htm @@ -14,11 +14,6 @@ local sid = "@global[0]" } } -.shunt-tab-hidden { - display: none !important; - visibility: hidden !important; -} - @media screen and (max-width: 1152px) { #cbi-<%=appname%>-socks .cbi-section-table-titles { display: none !important; @@ -28,7 +23,6 @@ local sid = "@global[0]" diff --git a/luci-app-passwall/luasrc/view/passwall/global/proxy.htm b/luci-app-passwall/luasrc/view/passwall/global/proxy.htm index 9dde1d84..00ffb0ec 100644 --- a/luci-app-passwall/luasrc/view/passwall/global/proxy.htm +++ b/luci-app-passwall/luasrc/view/passwall/global/proxy.htm @@ -1,14 +1,14 @@ -
" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> - -
-
- - - - -
+<%+cbi/valueheader%> + + +
+
+ + + +
@@ -108,3 +108,4 @@ opt.set("udp_proxy_mode", "proxy"); } +<%+cbi/valuefooter%> diff --git a/luci-app-passwall/luasrc/view/passwall/include/node_change.htm b/luci-app-passwall/luasrc/view/passwall/include/node_change.htm new file mode 100644 index 00000000..862649de --- /dev/null +++ b/luci-app-passwall/luasrc/view/passwall/include/node_change.htm @@ -0,0 +1,73 @@ +<% +local map = self.map +local api = map.api +local config = map.config +local verify_option = self.verify_option +local section_id = verify_option.section.section +-%> +<% if verify_option then -%> + +<%- end %> \ No newline at end of file diff --git a/luci-app-passwall/luasrc/view/passwall/include/shunt_options.htm b/luci-app-passwall/luasrc/view/passwall/include/shunt_options.htm index 20d081a6..53e9a5f9 100644 --- a/luci-app-passwall/luasrc/view/passwall/include/shunt_options.htm +++ b/luci-app-passwall/luasrc/view/passwall/include/shunt_options.htm @@ -2,18 +2,22 @@ local map = self.map local api = map.api local config = map.config -local id = self.id -local s_cfgid = self.s_cfgid +local node_id = self.node_id +local verify_option = self.verify_option +local section_id = self.section_id +local section_type = self.section_type +local tab_name = self.tab_name -%> \ No newline at end of file diff --git a/luci-app-passwall/luasrc/view/passwall/node_config/footer.htm b/luci-app-passwall/luasrc/view/passwall/node_config/footer.htm index e6a9da82..cfe03b1c 100644 --- a/luci-app-passwall/luasrc/view/passwall/node_config/footer.htm +++ b/luci-app-passwall/luasrc/view/passwall/node_config/footer.htm @@ -35,27 +35,30 @@ local config = map.config }); waitForElement('select[name*="<%=config%>"][name*="protocol"]', function(el) { let o_val = el.value; + const name_split = el.name.split("."); + const name = name_split[name_split.length - 1]; el.addEventListener("change", () => { el.blur(); if (el.value.startsWith("_") || (o_val.startsWith("_") && !el.value.startsWith("_"))) { - let name_split = el.name.split("."); - let name = name_split[name_split.length - 1]; - let save = true; - if (save) { - /* - const saveBtn = document.getElementsByClassName('cbi-button-save'); - if (saveBtn && saveBtn.length > 0) { - saveBtn[saveBtn.length - 1].click(); - } - */ - update_config(node_id, { - remarks: getOption("<%=config%>", "<%=sid%>", "remarks").value, - group: getOption("<%=config%>", "<%=sid%>", "group").value, - protocol: getOption("<%=config%>", "<%=sid%>", name).value, - }, node_config_url); - } else { - window.location.href = node_config_url + "?select_proto=" + encodeURIComponent(el.value); + if (el.value.startsWith("_")) { + const map = document.getElementById("cbi-<%=config%>"); + const hiddenInput = document.createElement('input'); + hiddenInput.type = 'hidden'; + hiddenInput.name = 'load' + el.value; + hiddenInput.value = '1'; + map.appendChild(hiddenInput); } + const saveBtn = document.getElementsByClassName('cbi-button-save'); + if (saveBtn && saveBtn.length > 0) { + saveBtn[saveBtn.length - 1].click(); + } + /* + update_config(node_id, { + remarks: getOption("<%=config%>", "<%=sid%>", "remarks").value, + group: getOption("<%=config%>", "<%=sid%>", "group").value, + protocol: getOption("<%=config%>", "<%=sid%>", name).value, + }, node_config_url); + */ } }); }); diff --git a/luci-app-passwall/po/zh-cn/passwall.po b/luci-app-passwall/po/zh-cn/passwall.po index a4e2f5d4..a0e6ca45 100644 --- a/luci-app-passwall/po/zh-cn/passwall.po +++ b/luci-app-passwall/po/zh-cn/passwall.po @@ -1295,6 +1295,9 @@ msgstr "访问控制" msgid "ACLs is a tools which used to designate specific IP proxy mode." msgstr "访问控制列表是用于指定特殊 IP 代理模式的工具。" +msgid "Use global configuration when using the global node." +msgstr "与全局节点相同时,将使用全局配置。" + msgid "Example:" msgstr "例:" diff --git a/luci-app-passwall/root/usr/share/passwall/app.sh b/luci-app-passwall/root/usr/share/passwall/app.sh index 5dce2381..ab5bce43 100755 --- a/luci-app-passwall/root/usr/share/passwall/app.sh +++ b/luci-app-passwall/root/usr/share/passwall/app.sh @@ -566,11 +566,7 @@ start_global() { local node_socks_bind_local=$(config_n_get @global[0] node_socks_bind_local 1) local node_socks_bind="127.0.0.1" [ "${node_socks_bind_local}" != "1" ] && node_socks_bind="0.0.0.0" - local global_socks_port=$(config_n_get @global[0] node_socks_port 1070) - GLOBAL_SOCKS_port=$(get_new_port $global_socks_port) - if [ "$GLOBAL_SOCKS_port" != "$global_socks_port" ]; then - echolog "注意:全局节点 Socks 端口冲突,原端口 ${global_socks_port} 已自动更改为 ${GLOBAL_SOCKS_port}!" - fi + GLOBAL_SOCKS_port=$(config_n_get @global[0] node_socks_port 1070) GLOBAL_HTTP_port=$(config_n_get @global[0] node_http_port 0) [ "$GLOBAL_HTTP_port" != "0" ] && local on_node_http=1 if [ $PROXY_IPV6 = "1" ]; then @@ -1390,6 +1386,7 @@ acl_app() { log=${log:-0} loglevel=${loglevel:-warn} + log_chinadns_ng=${log_chinadns_ng:-0} if [ -n "${sources}" ]; then for s in $sources; do @@ -1445,7 +1442,10 @@ acl_app() { [ -n "$node" ] && { local GLOBAL_NODE=$(get_cache_var "ACL_GLOBAL_node") - [ -n "${GLOBAL_NODE}" ] && GLOBAL_redir_port=$(get_cache_var "ACL_GLOBAL_redir_port") + [ -n "${GLOBAL_NODE}" ] && { + local GLOBAL_redir_port=$(get_cache_var "ACL_GLOBAL_redir_port") + [ "$node" = "${GLOBAL_NODE}" ] && node="default" + } if [ "$node" = "default" ]; then if [ -n "${GLOBAL_NODE}" ]; then set_cache_var "ACL_${sid}_node" "${GLOBAL_NODE}" @@ -1457,187 +1457,179 @@ acl_app() { echolog " - 全局节点未启用,跳过【${remarks}】" fi else - [ "$(config_get_type $node)" = "nodes" ] || [ "$(config_get_type $node)" = "socks" ] && { - if [ -n "${GLOBAL_NODE}" ] && [ "$node" = "${GLOBAL_NODE}" ]; then - set_cache_var "ACL_${sid}_node" "${GLOBAL_NODE}" - set_cache_var "ACL_${sid}_redir_port" "${GLOBAL_redir_port}" - set_cache_var "ACL_${sid}_dns_port" "${GLOBAL_DNSMASQ_PORT}" - set_cache_var "ACL_${sid}_default" "1" - [ "$GLOBAL_SHUNT_NODE_FAKEDNS" = "1" ] && use_fakedns=1 + ([ "$(config_get_type $node)" = "nodes" ] || [ "$(config_get_type $node)" = "socks" ]) && { + local type protocol + if [ "$(config_get_type $node)" = "socks" ]; then + if [ "${dns_mode}" = "xray" ]; then + type="xray" + elif [ "${dns_mode}" = "sing-box" ]; then + type="sing-box" + elif [ -n "${SINGBOX_BIN}" ]; then + type="sing-box" + elif [ -n "${XRAY_BIN}" ]; then + type="xray" + fi else - local type protocol - if [ "$(config_get_type $node)" = "socks" ]; then - if [ "${dns_mode}" = "xray" ]; then - type="xray" - elif [ "${dns_mode}" = "sing-box" ]; then - type="sing-box" - elif [ -n "${SINGBOX_BIN}" ]; then - type="sing-box" - elif [ -n "${XRAY_BIN}" ]; then - type="xray" + type=$(echo $(config_n_get $node type) | tr 'A-Z' 'a-z') + protocol=$(config_n_get $node protocol) + fi + ([ "$type" = "sing-box" ] || [ "$type" = "xray" ]) && [ "$protocol" = "_shunt" ] && [ "$type" != "$dns_mode" ] && { + dns_mode=$type + [ "$type" = "xray" ] && { + case "$v2ray_dns_mode" in http3|tls|quic) + v2ray_dns_mode="tcp" + remote_dns="1.1.1.1#53" + ;; + esac + } + } + dns_cache_key="${dns_mode}_${remote_dns}_${v2ray_dns_mode:-none}_${remote_dns_client_ip:-0}_${remote_fakedns:-0}_${remote_rewrite_ttl:-30}" + ([ "$v2ray_dns_mode" = "doh" ] || [ "$v2ray_dns_mode" = "http3" ]) && { + dns_cache_key="${dns_mode}_${remote_dns_doh:-https://1.1.1.1/dns-query}_${v2ray_dns_mode:-doh}_${remote_dns_client_ip:-0}_${remote_fakedns:-0}_${remote_rewrite_ttl:-30}" + } + + if [ "$remote_fakedns" = "1" ] || ([ "$protocol" = "_shunt" ] && [ "$(config_n_get $node fakedns)" = "1" ]); then + use_fakedns=1 + fi + + run_dns() { + local _dns_port + [ -n $1 ] && _dns_port=$1 + [ -z ${_dns_port} ] && { + dns_port=$(get_new_port $(expr $dns_port + 1)) + _dns_port=$dns_port + if [ "$dns_mode" = "dns2socks" ]; then + run_dns2socks flag=acl_${sid} socks_address=127.0.0.1 socks_port=$socks_port listen_address=0.0.0.0 listen_port=${_dns_port} dns=$remote_dns cache=1 + elif [ "$dns_mode" = "sing-box" ] || [ "$dns_mode" = "xray" ]; then + config_file=$TMP_ACL_PATH/${node}_SOCKS_${socks_port}_DNS.json + remote_dns_doh=${remote_dns_doh:-https://1.1.1.1/dns-query} + local type=${dns_mode} + [ "${dns_mode}" = "sing-box" ] && type="singbox" + dnsmasq_filter_proxy_ipv6=0 + remote_dns_query_strategy="UseIP" + [ "$filter_proxy_ipv6" = "1" ] && remote_dns_query_strategy="UseIPv4" + run_${type} flag=acl_${sid} type=$dns_mode dns_socks_address=127.0.0.1 dns_socks_port=$socks_port dns_listen_port=${_dns_port} remote_dns_protocol=${v2ray_dns_mode} remote_dns_udp_server=${remote_dns} remote_dns_tcp_server=${remote_dns} remote_dns_doh="${remote_dns_doh}" remote_dns_query_strategy=${remote_dns_query_strategy} remote_dns_client_ip=${remote_dns_client_ip} config_file=$config_file fi + set_cache_var "node_${node}_$(echo -n "${dns_cache_key}" | md5sum | cut -d " " -f1)" "${_dns_port}" + } + + [ "$dns_shunt" = "chinadns-ng" ] && [ -n "$(first_type chinadns-ng)" ] && { + chinadns_ng_min=2024.04.13 + chinadns_ng_now=$($(first_type chinadns-ng) -V | grep -i "ChinaDNS-NG " | awk '{print $2}') + if [ $(check_ver "$chinadns_ng_now" "$chinadns_ng_min") = 1 ]; then + echolog " * 注意:当前 ChinaDNS-NG 版本为[ $chinadns_ng_now ],请更新到[ $chinadns_ng_min ]或以上版本,否则 DNS 有可能无法正常工作!" + fi + + [ "$filter_proxy_ipv6" = "1" ] && dnsmasq_filter_proxy_ipv6=0 + chinadns_port=$(expr $chinadns_port + 1) + _china_ng_listen="127.0.0.1#${chinadns_port},::1#${chinadns_port}" + + _chinadns_local_dns=$(IFS=','; set -- $LOCAL_DNS; [ "${1%%[#:]*}" = "127.0.0.1" ] && echo "$1" || ([ -n "$2" ] && echo "$1,$2" || echo "$1")) + _direct_dns_mode=$(config_n_get @global[0] direct_dns_mode "auto") + case "${_direct_dns_mode}" in + udp) + _chinadns_local_dns=$(normalize_dns "$(config_n_get @global[0] direct_dns 223.5.5.5:53)") + ;; + tcp) + _chinadns_local_dns="tcp://$(normalize_dns "$(config_n_get @global[0] direct_dns 223.5.5.5:53)")" + ;; + esac + + run_chinadns_ng \ + _flag="$sid" \ + _listen_port=${chinadns_port} \ + _dns_local=${_chinadns_local_dns} \ + _dns_trust=127.0.0.1#${_dns_port} \ + _no_ipv6_trust=${filter_proxy_ipv6} \ + _use_direct_list=${use_direct_list} \ + _use_proxy_list=${use_proxy_list} \ + _use_block_list=${use_block_list} \ + _gfwlist=${use_gfw_list} \ + _chnlist=${chn_list} \ + _default_mode=${tcp_proxy_mode} \ + _default_tag=${chinadns_ng_default_tag:-smart} \ + _no_logic_log=1 \ + _node=${node} \ + _filter_https=${force_https_soa:-0} \ + _log=${log_chinadns_ng} + + use_default_dns="chinadns_ng" + } + + dnsmasq_port=$(get_new_port $(expr $dnsmasq_port + 1)) + local dnsmasq_conf=${acl_path}/dnsmasq.conf + local dnsmasq_conf_path=${acl_path}/dnsmasq.d + lua $APP_PATH/helper_dnsmasq.lua add_rule -FLAG ${sid} -TMP_DNSMASQ_PATH ${dnsmasq_conf_path} -DNSMASQ_CONF_FILE ${dnsmasq_conf} \ + -LISTEN_PORT ${dnsmasq_port} -DEFAULT_DNS ${DEFAULT_DNS} -LOCAL_DNS $LOCAL_DNS \ + -USE_DIRECT_LIST "${use_direct_list}" -USE_PROXY_LIST "${use_proxy_list}" -USE_BLOCK_LIST "${use_block_list}" -USE_GFW_LIST "${use_gfw_list}" -CHN_LIST "${chn_list}" \ + -TUN_DNS "127.0.0.1#${_dns_port}" -USE_DEFAULT_DNS "${use_default_dns:-direct}" -CHINADNS_DNS ${_china_ng_listen:-0} \ + -NODE $node -DEFAULT_PROXY_MODE ${tcp_proxy_mode} -NO_PROXY_IPV6 ${dnsmasq_filter_proxy_ipv6:-0} -NFTFLAG ${nftflag:-0} \ + -NO_LOGIC_LOG 1 + ln_run "$(first_type dnsmasq)" "dnsmasq_${sid}" "/dev/null" -C ${dnsmasq_conf} -x ${acl_path}/dnsmasq.pid + set_cache_var "ACL_${sid}_dns_port" "${dnsmasq_port}" + set_cache_var "node_${node}_$(echo -n "${tcp_proxy_mode}_${dns_cache_key}" | md5sum | cut -d " " -f1)" "${dnsmasq_port}" + #dhcp.leases to hosts + $APP_PATH/lease2hosts.sh > /dev/null 2>&1 & + } + _redir_port=$(get_cache_var "node_${node}_redir_port") + _socks_port=$(get_cache_var "node_${node}_socks_port") + if [ -n "${_socks_port}" ] && [ -n "${_redir_port}" ]; then + socks_port=${_socks_port} + node_port=${_redir_port} + _dnsmasq_port=$(get_cache_var "node_${node}_$(echo -n "${tcp_proxy_mode}_${dns_cache_key}" | md5sum | cut -d " " -f1)") + if [ -z "${_dnsmasq_port}" ]; then + _dns_port=$(get_cache_var "node_${node}_$(echo -n "${dns_cache_key}" | md5sum | cut -d " " -f1)") + run_dns ${_dns_port} else - type=$(echo $(config_n_get $node type) | tr 'A-Z' 'a-z') - protocol=$(config_n_get $node protocol) + [ -n "${_dnsmasq_port}" ] && set_cache_var "ACL_${sid}_dns_port" "${_dnsmasq_port}" fi - ([ "$type" = "sing-box" ] || [ "$type" = "xray" ]) && [ "$protocol" = "_shunt" ] && [ "$type" != "$dns_mode" ] && { - dns_mode=$type - [ "$type" = "xray" ] && { - case "$v2ray_dns_mode" in http3|tls|quic) - v2ray_dns_mode="tcp" - remote_dns="1.1.1.1#53" - ;; - esac - } - } - dns_cache_key="${dns_mode}_${remote_dns}_${v2ray_dns_mode:-none}_${remote_dns_client_ip:-0}_${remote_fakedns:-0}_${remote_rewrite_ttl:-30}" - ([ "$v2ray_dns_mode" = "doh" ] || [ "$v2ray_dns_mode" = "http3" ]) && { - dns_cache_key="${dns_mode}_${remote_dns_doh:-https://1.1.1.1/dns-query}_${v2ray_dns_mode:-doh}_${remote_dns_client_ip:-0}_${remote_fakedns:-0}_${remote_rewrite_ttl:-30}" - } + else + socks_port=$(get_new_port $(expr $socks_port + 1)) + set_cache_var "node_${node}_socks_port" "${socks_port}" + redir_port=$(get_new_port $(expr $redir_port + 1)) + set_cache_var "node_${node}_redir_port" "${redir_port}" + node_port=$redir_port + local log_file="/dev/null" + [ "${log}" = "1" ] && log_file="${TMP_ACL_PATH}/${sid}/node.log" - if [ "$remote_fakedns" = "1" ] || ([ "$protocol" = "_shunt" ] && [ "$(config_n_get $node fakedns)" = "1" ]); then - use_fakedns=1 - fi - - run_dns() { - local _dns_port - [ -n $1 ] && _dns_port=$1 - [ -z ${_dns_port} ] && { + if [ "${type}" = "sing-box" ] || [ "${type}" = "xray" ]; then + config_file="acl/${node}_${redir_port}.json" + _extra_param="socks_address=127.0.0.1 socks_port=$socks_port" + [ "${type}" = "${dns_mode}" ] && { dns_port=$(get_new_port $(expr $dns_port + 1)) _dns_port=$dns_port - if [ "$dns_mode" = "dns2socks" ]; then - run_dns2socks flag=acl_${sid} socks_address=127.0.0.1 socks_port=$socks_port listen_address=0.0.0.0 listen_port=${_dns_port} dns=$remote_dns cache=1 - elif [ "$dns_mode" = "sing-box" ] || [ "$dns_mode" = "xray" ]; then - config_file=$TMP_ACL_PATH/${node}_SOCKS_${socks_port}_DNS.json - remote_dns_doh=${remote_dns_doh:-https://1.1.1.1/dns-query} - local type=${dns_mode} - [ "${dns_mode}" = "sing-box" ] && type="singbox" - dnsmasq_filter_proxy_ipv6=0 - remote_dns_query_strategy="UseIP" - [ "$filter_proxy_ipv6" = "1" ] && remote_dns_query_strategy="UseIPv4" - run_${type} flag=acl_${sid} type=$dns_mode dns_socks_address=127.0.0.1 dns_socks_port=$socks_port dns_listen_port=${_dns_port} remote_dns_protocol=${v2ray_dns_mode} remote_dns_udp_server=${remote_dns} remote_dns_tcp_server=${remote_dns} remote_dns_doh="${remote_dns_doh}" remote_dns_query_strategy=${remote_dns_query_strategy} remote_dns_client_ip=${remote_dns_client_ip} config_file=$config_file - fi - set_cache_var "node_${node}_$(echo -n "${dns_cache_key}" | md5sum | cut -d " " -f1)" "${_dns_port}" + dnsmasq_filter_proxy_ipv6=0 + remote_dns_query_strategy="UseIP" + [ "$filter_proxy_ipv6" = "1" ] && remote_dns_query_strategy="UseIPv4" + remote_dns_doh=${remote_dns_doh:-https://1.1.1.1/dns-query} + _extra_param="${_extra_param} dns_listen_port=${_dns_port} remote_dns_protocol=${v2ray_dns_mode} remote_dns_udp_server=${remote_dns} remote_dns_tcp_server=${remote_dns}" + _extra_param="${_extra_param} remote_dns_doh=${remote_dns_doh} remote_dns_query_strategy=${remote_dns_query_strategy} remote_fakedns=${remote_fakedns:-0} remote_dns_client_ip=${remote_dns_client_ip}" } - - [ "$dns_shunt" = "chinadns-ng" ] && [ -n "$(first_type chinadns-ng)" ] && { - chinadns_ng_min=2024.04.13 - chinadns_ng_now=$($(first_type chinadns-ng) -V | grep -i "ChinaDNS-NG " | awk '{print $2}') - if [ $(check_ver "$chinadns_ng_now" "$chinadns_ng_min") = 1 ]; then - echolog " * 注意:当前 ChinaDNS-NG 版本为[ $chinadns_ng_now ],请更新到[ $chinadns_ng_min ]或以上版本,否则 DNS 有可能无法正常工作!" - fi - - [ "$filter_proxy_ipv6" = "1" ] && dnsmasq_filter_proxy_ipv6=0 - chinadns_port=$(expr $chinadns_port + 1) - _china_ng_listen="127.0.0.1#${chinadns_port},::1#${chinadns_port}" - - _chinadns_local_dns=$(IFS=','; set -- $LOCAL_DNS; [ "${1%%[#:]*}" = "127.0.0.1" ] && echo "$1" || ([ -n "$2" ] && echo "$1,$2" || echo "$1")) - _direct_dns_mode=$(config_n_get @global[0] direct_dns_mode "auto") - case "${_direct_dns_mode}" in - udp) - _chinadns_local_dns=$(normalize_dns "$(config_n_get @global[0] direct_dns 223.5.5.5:53)") - ;; - tcp) - _chinadns_local_dns="tcp://$(normalize_dns "$(config_n_get @global[0] direct_dns 223.5.5.5:53)")" - ;; - esac - - run_chinadns_ng \ - _flag="$sid" \ - _listen_port=${chinadns_port} \ - _dns_local=${_chinadns_local_dns} \ - _dns_trust=127.0.0.1#${_dns_port} \ - _no_ipv6_trust=${filter_proxy_ipv6} \ - _use_direct_list=${use_direct_list} \ - _use_proxy_list=${use_proxy_list} \ - _use_block_list=${use_block_list} \ - _gfwlist=${use_gfw_list} \ - _chnlist=${chn_list} \ - _default_mode=${tcp_proxy_mode} \ - _default_tag=${chinadns_ng_default_tag:-smart} \ - _no_logic_log=1 \ - _node=${node} \ - _filter_https=${force_https_soa:-0} \ - _log=${log} - - use_default_dns="chinadns_ng" + _extra_param="${_extra_param} tcp_proxy_way=$TCP_PROXY_WAY" + config_file="$TMP_PATH/$config_file" + [ "${type}" = "sing-box" ] && { + type="singbox" + _extra_param="${_extra_param} remote_rewrite_ttl=${remote_rewrite_ttl:-30}" } - - dnsmasq_port=$(get_new_port $(expr $dnsmasq_port + 1)) - local dnsmasq_conf=${acl_path}/dnsmasq.conf - local dnsmasq_conf_path=${acl_path}/dnsmasq.d - lua $APP_PATH/helper_dnsmasq.lua add_rule -FLAG ${sid} -TMP_DNSMASQ_PATH ${dnsmasq_conf_path} -DNSMASQ_CONF_FILE ${dnsmasq_conf} \ - -LISTEN_PORT ${dnsmasq_port} -DEFAULT_DNS ${DEFAULT_DNS} -LOCAL_DNS $LOCAL_DNS \ - -USE_DIRECT_LIST "${use_direct_list}" -USE_PROXY_LIST "${use_proxy_list}" -USE_BLOCK_LIST "${use_block_list}" -USE_GFW_LIST "${use_gfw_list}" -CHN_LIST "${chn_list}" \ - -TUN_DNS "127.0.0.1#${_dns_port}" -USE_DEFAULT_DNS "${use_default_dns:-direct}" -CHINADNS_DNS ${_china_ng_listen:-0} \ - -NODE $node -DEFAULT_PROXY_MODE ${tcp_proxy_mode} -NO_PROXY_IPV6 ${dnsmasq_filter_proxy_ipv6:-0} -NFTFLAG ${nftflag:-0} \ - -NO_LOGIC_LOG 1 - ln_run "$(first_type dnsmasq)" "dnsmasq_${sid}" "/dev/null" -C ${dnsmasq_conf} -x ${acl_path}/dnsmasq.pid - set_cache_var "ACL_${sid}_dns_port" "${dnsmasq_port}" - set_cache_var "node_${node}_$(echo -n "${tcp_proxy_mode}_${dns_cache_key}" | md5sum | cut -d " " -f1)" "${dnsmasq_port}" - #dhcp.leases to hosts - $APP_PATH/lease2hosts.sh > /dev/null 2>&1 & - } - _redir_port=$(get_cache_var "node_${node}_redir_port") - _socks_port=$(get_cache_var "node_${node}_socks_port") - if [ -n "${_socks_port}" ] && [ -n "${_redir_port}" ]; then - socks_port=${_socks_port} - node_port=${_redir_port} - _dnsmasq_port=$(get_cache_var "node_${node}_$(echo -n "${tcp_proxy_mode}_${dns_cache_key}" | md5sum | cut -d " " -f1)") - if [ -z "${_dnsmasq_port}" ]; then - _dns_port=$(get_cache_var "node_${node}_$(echo -n "${dns_cache_key}" | md5sum | cut -d " " -f1)") - run_dns ${_dns_port} - else - [ -n "${_dnsmasq_port}" ] && set_cache_var "ACL_${sid}_dns_port" "${_dnsmasq_port}" - fi + _extra_param="${_extra_param} use_proxy_list=$use_proxy_list use_gfw_list=$use_gfw_list chn_list=$chn_list" + run_${type} flag=$node node=$node redir_port=$redir_port ${_extra_param} config_file=$config_file log_file=$log_file loglevel=$loglevel else - socks_port=$(get_new_port $(expr $socks_port + 1)) - set_cache_var "node_${node}_socks_port" "${socks_port}" - redir_port=$(get_new_port $(expr $redir_port + 1)) - set_cache_var "node_${node}_redir_port" "${redir_port}" - node_port=$redir_port - local log_file="/dev/null" - [ "${log}" = "1" ] && log_file="${TMP_ACL_PATH}/${sid}/node.log" - - if [ "${type}" = "sing-box" ] || [ "${type}" = "xray" ]; then - config_file="acl/${node}_${redir_port}.json" - _extra_param="socks_address=127.0.0.1 socks_port=$socks_port" - [ "${type}" = "${dns_mode}" ] && { - dns_port=$(get_new_port $(expr $dns_port + 1)) - _dns_port=$dns_port - dnsmasq_filter_proxy_ipv6=0 - remote_dns_query_strategy="UseIP" - [ "$filter_proxy_ipv6" = "1" ] && remote_dns_query_strategy="UseIPv4" - remote_dns_doh=${remote_dns_doh:-https://1.1.1.1/dns-query} - _extra_param="${_extra_param} dns_listen_port=${_dns_port} remote_dns_protocol=${v2ray_dns_mode} remote_dns_udp_server=${remote_dns} remote_dns_tcp_server=${remote_dns}" - _extra_param="${_extra_param} remote_dns_doh=${remote_dns_doh} remote_dns_query_strategy=${remote_dns_query_strategy} remote_fakedns=${remote_fakedns:-0} remote_dns_client_ip=${remote_dns_client_ip}" - } - _extra_param="${_extra_param} tcp_proxy_way=$TCP_PROXY_WAY" - config_file="$TMP_PATH/$config_file" - [ "${type}" = "sing-box" ] && { - type="singbox" - _extra_param="${_extra_param} remote_rewrite_ttl=${remote_rewrite_ttl:-30}" - } - _extra_param="${_extra_param} use_proxy_list=$use_proxy_list use_gfw_list=$use_gfw_list chn_list=$chn_list" - run_${type} flag=$node node=$node redir_port=$redir_port ${_extra_param} config_file=$config_file log_file=$log_file loglevel=$loglevel - else - config_file="acl/${node}_SOCKS_${socks_port}.json" - run_socks flag=$node node=$node bind=127.0.0.1 socks_port=$socks_port config_file=$config_file log_file=$log_file - # log_file=$TMP_ACL_PATH/ipt2socks_${node}_${redir_port}.log - log_file="/dev/null" - run_ipt2socks flag=acl_${node} tcp_tproxy=${is_tproxy} local_port=$redir_port socks_address=127.0.0.1 socks_port=$socks_port log_file=$log_file - fi - run_dns ${_dns_port} + config_file="acl/${node}_SOCKS_${socks_port}.json" + run_socks flag=$node node=$node bind=127.0.0.1 socks_port=$socks_port config_file=$config_file log_file=$log_file + # log_file=$TMP_ACL_PATH/ipt2socks_${node}_${redir_port}.log + log_file="/dev/null" + run_ipt2socks flag=acl_${node} tcp_tproxy=${is_tproxy} local_port=$redir_port socks_address=127.0.0.1 socks_port=$socks_port log_file=$log_file fi - set_cache_var "ACL_${sid}_node" "${node}" - set_cache_var "ACL_${sid}_redir_port" "${node_port}" + run_dns ${_dns_port} fi + set_cache_var "ACL_${sid}_node" "${node}" + set_cache_var "ACL_${sid}_redir_port" "${node_port}" } fi [ "${use_fakedns}" = "1" ] && set_cache_var "ACL_${sid}_fakedns" "1" } unset enabled sid remarks sources interface tcp_no_redir_ports udp_no_redir_ports use_global_config node use_direct_list use_proxy_list use_block_list use_gfw_list chn_list tcp_proxy_mode udp_proxy_mode filter_proxy_ipv6 dns_mode remote_dns v2ray_dns_mode remote_dns_doh remote_dns_client_ip - unset _ip _mac _iprange _ipset _ip_or_mac source_list node_port config_file _extra_param dns_cache_key log loglevel + unset _ip _mac _iprange _ipset _ip_or_mac source_list node_port config_file _extra_param dns_cache_key log loglevel log_chinadns_ng unset _china_ng_listen _chinadns_local_dns _direct_dns_mode chinadns_ng_default_tag dnsmasq_filter_proxy_ipv6 remote_fakedns force_https_soa use_fakedns remote_rewrite_ttl done unset socks_port redir_port dns_port dnsmasq_port chinadns_port diff --git a/luci-app-passwall/root/usr/share/passwall/iptables.sh b/luci-app-passwall/root/usr/share/passwall/iptables.sh index f575108c..452f922f 100755 --- a/luci-app-passwall/root/usr/share/passwall/iptables.sh +++ b/luci-app-passwall/root/usr/share/passwall/iptables.sh @@ -236,6 +236,12 @@ load_acl() { } [ -n "$(get_cache_var "ACL_${sid}_dns_port")" ] && dns_redirect_port=$(get_cache_var "ACL_${sid}_dns_port") [ -n "$(get_cache_var "ACL_${sid}_fakedns")" ] && use_fakedns=$(get_cache_var "ACL_${sid}_fakedns") + + ([ -n "$node" ] && ([ "$node" = "default" ] || [ "$node" = "$NODE" ])) && { + use_global_config=1 + unset node + } + [ -n "$node" ] && { if [ "$(config_get_type $node)" = "socks" ]; then node_remark="Socks 配置($(config_n_get $node port) 端口)" diff --git a/luci-app-passwall/root/usr/share/passwall/nftables.sh b/luci-app-passwall/root/usr/share/passwall/nftables.sh index 87e8f2bb..8065b8fe 100755 --- a/luci-app-passwall/root/usr/share/passwall/nftables.sh +++ b/luci-app-passwall/root/usr/share/passwall/nftables.sh @@ -296,6 +296,12 @@ load_acl() { } [ -n "$(get_cache_var "ACL_${sid}_dns_port")" ] && dns_redirect_port=$(get_cache_var "ACL_${sid}_dns_port") [ -n "$(get_cache_var "ACL_${sid}_fakedns")" ] && use_fakedns=$(get_cache_var "ACL_${sid}_fakedns") + + ([ -n "$node" ] && ([ "$node" = "default" ] || [ "$node" = "$NODE" ])) && { + use_global_config=1 + unset node + } + [ -n "$node" ] && { if [ "$(config_get_type $node)" = "socks" ]; then node_remark="Socks 配置($(config_n_get $node port) 端口)" diff --git a/luci-app-ssr-plus/Makefile b/luci-app-ssr-plus/Makefile index 3f5f66f4..97ccca74 100644 --- a/luci-app-ssr-plus/Makefile +++ b/luci-app-ssr-plus/Makefile @@ -4,7 +4,7 @@ LUCI_TITLE:=luci-app-ssr-plus LUCI_PKGARCH:=all PKG_NAME:=luci-app-ssr-plus PKG_VERSION:=196 -PKG_RELEASE:=67 +PKG_RELEASE:=68 PKG_CONFIG_DEPENDS:= \ CONFIG_PACKAGE_$(PKG_NAME)_Iptables_Transparent_Proxy \ diff --git a/luci-app-ssr-plus/root/etc/init.d/shadowsocksr b/luci-app-ssr-plus/root/etc/init.d/shadowsocksr index 64157fd0..87c944a3 100755 --- a/luci-app-ssr-plus/root/etc/init.d/shadowsocksr +++ b/luci-app-ssr-plus/root/etc/init.d/shadowsocksr @@ -2587,7 +2587,6 @@ start_server() { local listenip local username local password - local auth_opts local enable_mihomo local mihomo_server_started local xray_bin @@ -2654,16 +2653,23 @@ start_server() { fi ;; socks5) - listenip='-i 0.0.0.0' - [ -e /proc/sys/net/ipv6 ] && listenip='-i ::' + listenip='0.0.0.0' + [ -e /proc/sys/net/ipv6 ] && listenip='::' username=$(uci_get_by_name "$1" username) password=$(uci_get_by_name "$1" password) - auth_opts="" + if { [ -n "$username" ] && [ -z "$password" ]; } || + { [ -z "$username" ] && [ -n "$password" ]; }; then + echolog "Server:Socks5 Server$server_count 用户名和密码必须同时配置。" + return 1 + fi if [ -n "$username" ]; then - auth_opts="-u $username" - [ -n "$password" ] && auth_opts="$auth_opts -P $password" + ln_start_bin "$(first_type microsocks)" "ssr-server-$server_count" \ + -i "$listenip" -p "$(uci_get_by_name "$1" server_port)" \ + -1 -u "$username" -P "$password" + else + ln_start_bin "$(first_type microsocks)" "ssr-server-$server_count" \ + -i "$listenip" -p "$(uci_get_by_name "$1" server_port)" fi - ln_start_bin "$(first_type microsocks)" microsocks "$listenip" -p "$(uci_get_by_name "$1" server_port)" -1 "$auth_opts" ssr-server$server_count echolog "Server:Socks5 Server$server_count Started!" ;; vmess|vless|trojan|shadowsocks) diff --git a/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js b/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js index 90b5b99e..93e1870b 100644 --- a/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js +++ b/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js @@ -197,7 +197,6 @@ return view.extend({ _('Reject unsafe/insecure/risky FTP/Telnet/DCE/NetBIOS/SMB/RDP ports by default; overrides other settings; use %s for none').format('0')); o.datatype = 'list(portrange)'; o.placeholder = '21 23 135 137-139 445 3389'; - o.modalonly = true; o = s.taboption('access_control', form.Flag, 'check_acl', _('Check ACL'), _('Extend or override access defaults by device-specific permissions using the access control list (ACL)') + '
' + @@ -322,7 +321,7 @@ return view.extend({ o.retain = true; s = m.section(form.GridSection, 'acl_entry', '
' + _('Access Control List') + '
', - _('The access control list (ACL) specifies which IP addresses and ports can be mapped.') + ' ' + + _('The access control list (ACL) specifies which IPv4 addresses and ports can be mapped.') + ' ' + _('ACL entries are checked in order, then rejected if not matched and not accepted by access defaults. (To do: should be part of access control tab)')); s.anonymous = true; s.addremove = true; diff --git a/luci-app-upnp/root/usr/share/rpcd/ucode/luci.upnp b/luci-app-upnp/root/usr/share/rpcd/ucode/luci.upnp index b9bf7280..bd6fe158 100644 --- a/luci-app-upnp/root/usr/share/rpcd/ucode/luci.upnp +++ b/luci-app-upnp/root/usr/share/rpcd/ucode/luci.upnp @@ -19,9 +19,12 @@ const methods = { const leasefile = open(uci.get('upnpd', 'settings', 'lease_file') || '/var/run/miniupnpd.leases', 'r'); if (leasefile) { for (let line = leasefile.read('line'); length(line); line = leasefile.read('line')) { - const record = split(line, ':', 6); - if (length(record) == 6) { - let descr = trim(record[5]); + const record = split(line, ':', 7); + if (length(record) == 6 || length(record) == 7) { + // Daemon version >2.3.11 changes lease file format + let recshift = 0; + if (length(record) == 7) recshift = 1; + let descr = trim(record[5 + recshift]); let m = match(descr, /^PCP [A-Z]+ ([0-9a-f]{24})$/); if (m) descr = 'PCP (nonce ' + m[1] + ')'; else if (match(descr, /^NAT-PMP \d+ \w+$/)) descr = 'NAT-PMP'; @@ -30,9 +33,9 @@ const methods = { push(leases, { proto: uc(record[0]), extport: +record[1], - intaddr: arrtoip(iptoarr(record[2])), - intport: +record[3], - expires: record[4] - timelocal(localtime()), + intaddr: arrtoip(iptoarr(record[2 + recshift])), + intport: +record[3 + recshift], + expires: record[4 + recshift] - timelocal(localtime()), descr: descr }); } diff --git a/luci-app-wwand/Makefile b/luci-app-wwand/Makefile index c9b093aa..ac76affb 100644 --- a/luci-app-wwand/Makefile +++ b/luci-app-wwand/Makefile @@ -15,11 +15,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-wwand -PKG_RELEASE:=14 +PKG_RELEASE:=15 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/ddimension/luci-app-wwand.git -PKG_SOURCE_VERSION:=8ac66dc263c430b6f81c55dd97133d83000c750a +PKG_SOURCE_VERSION:=d7ca5f7f253507540730d3285f112f2d204f50a3 PKG_SOURCE_DATE:=2026-09-09 PKG_MIRROR_HASH:=skip diff --git a/luci-lib-linkeaseauth/Makefile b/luci-lib-linkeaseauth/Makefile index c2165cfe..9fa81e64 100644 --- a/luci-lib-linkeaseauth/Makefile +++ b/luci-lib-linkeaseauth/Makefile @@ -4,9 +4,10 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI shared OpenWrt auth bridge for LinkEase apps LUCI_PKGARCH:=all +PKG_PROVIDES:=luci-lib-openwrtauth PKG_VERSION:=1.0.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-proto-wwand/Makefile b/luci-proto-wwand/Makefile index c96d2c98..67a06429 100644 --- a/luci-proto-wwand/Makefile +++ b/luci-proto-wwand/Makefile @@ -18,12 +18,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-proto-wwand -PKG_RELEASE:=7 +PKG_RELEASE:=8 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/ddimension/luci-proto-wwand.git -PKG_SOURCE_VERSION:=b2cbfa2150034e7037a966e4676f301fcea6ed9e -PKG_SOURCE_DATE:=2026-09-06 +PKG_SOURCE_VERSION:=badbbc482790f1f79724196b6515746ccb942706 +PKG_SOURCE_DATE:=2026-09-09 PKG_MIRROR_HASH:=skip PKG_LICENSE:=GPL-2.0-only diff --git a/luci-theme-footstrap/Makefile b/luci-theme-footstrap/Makefile index 37b939c7..5e66cc09 100644 --- a/luci-theme-footstrap/Makefile +++ b/luci-theme-footstrap/Makefile @@ -17,7 +17,7 @@ LUCI_NAME:=luci-theme-footstrap FOOTSTRAP_VERSION?= ifneq ($(FOOTSTRAP_VERSION),) PKG_VERSION:=$(FOOTSTRAP_VERSION) -PKG_RELEASE:=63 +PKG_RELEASE:=64 endif LUCI_TITLE:=Footstrap Theme diff --git a/luci-theme-footstrap/htdocs/luci-static/resources/fs-chrome.js b/luci-theme-footstrap/htdocs/luci-static/resources/fs-chrome.js index ca2efff1..dd39d65f 100644 --- a/luci-theme-footstrap/htdocs/luci-static/resources/fs-chrome.js +++ b/luci-theme-footstrap/htdocs/luci-static/resources/fs-chrome.js @@ -182,18 +182,20 @@ function shellGeometry() { return _geom; } -/* The window's width and the column's gutter are read here, from a fitter, and nowhere else. +/* The window's width and the column's gutter are read here, from a fitter or from + * `contentWidth()`'s own staleness check below — nowhere else. * * The gutter is measured where it is applied rather than read off `--fs-content-pad`: below 767px * `theme/20-shell.css` re-pads `.fs-content` to `var(--fs-space-4)`, so the token says 28px a side * while the real gutter is 16px. The breakpoint may not be restated here — a width literal in JS is * what these reads exist to avoid — so the element is asked what it actually got. * - * Only a fitter calls this because `clientWidth` is a layout read and `getComputedStyle` resolves - * style, while `contentWidth()` below must answer mid-scroll without either (fs-select's pass, for - * a table the poll brought in under the reader's thumb). A fitter runs on every resize and content - * mutation and defers during a flick, so a mid-scroll answer is the geometry as of the last still - * moment. + * `clientWidth` is a layout read and `getComputedStyle` resolves style, so a fitter is the one + * caller allowed to reach BOTH unconditionally: it defers the whole pass during a flick + * (`fit.scrolling()`, fs-fit.js) rather than pay either mid-scroll. `contentWidth()` reaches only + * the first (comparison, not the write) on every call, and this function's own body only when + * that comparison says the width moved — its answer is otherwise the geometry as of the last still + * moment, exactly what a fitter last measured. * * A hostile declaration is no threat here: `.fs-content` carries no chrome mark, so if an app * re-pads it then that padding IS the column's gutter. Before any fitter has run — the login page @@ -270,21 +272,33 @@ function fitChrome() { * fitShell's data-narrow, and is untouched here.) */ const topBar = !!bar && !!menu && prefs.isTopLayout(); - /* THE BAR MAY NOT GET SHORTER WHILE IT IS BEING MEASURED. The three classes below are taken off - * so the menu can be asked whether it fits on one row (fs-fit rule 1), and on a narrow bar that - * makes the whole chrome one row instead of two for that layout — every pixel of it above the - * reader, who is moved by exactly as much and moved back a moment later. Chromium and Firefox - * hide it behind their scroll anchoring; Safari implements none, on any platform, so on an - * iPhone this is the Overview creeping up once per poll tick. Reported from one, and bisected to - * this pass on the reporter's own router: `?off=chromefit` stopped it, `?off=measure` (the - * tables' own re-measure) did not. + /* THE BAR MAY NOT CHANGE HEIGHT WHILE IT IS BEING MEASURED, IN EITHER DIRECTION. The three + * classes below are taken off so the menu can be asked whether it fits on one row (fs-fit + * rule 1), and while they are off the bar's OWN box is free to answer any height its content + * currently needs — not only shorter. A `min-height` floor alone stops the shrink but not the + * grow: with the classes off and `fs-dense1`/`fs-dense2` stripped by `fitTabStrips()`, this pass + * measured the bar walking 230 -> 202 -> 164 -> 144 -> 123 -> 131 -> 123px against a settled + * 123px on owrt2512 at 767px — 107px of growth a floor never sees, on top of the shrink it does + * — each step landing between two of the poll's own separate section refreshes, so the browser + * paints in between and the reader is moved by exactly as much, on Chromium and Firefox as well + * as Safari (`tools/fit-quiet.mjs`, `../tmp/task-toplayout/pass-probe.mjs`). `min-height` alone + * was measured to `accc451`'s WebKit-only diagnosis instead — WebKit's own scroll anchoring + * looked like the whole story only because it is the one engine with no anchoring at all to hide + * this walk behind; Chromium and Firefox absorb it the same way they absorb any other layout + * change, which is not the same as not producing it. * - * `min-height`, not `height`: the pass may legitimately need MORE room a moment later — that is - * what `fs-bar-stack` is for — and a floor lets it grow while refusing the shrink. It comes off - * before `publishBarHeight()`, which must measure the bar the reader actually gets. */ + * So both `min-height` AND `height` are pinned to the SAME value for the whole decision — a hard + * pin, not a floor — because nothing this pass measures (`stripFitsOneRow()`'s `offsetTop`, + * `clusterFitsBrandRow()`'s widths) reads the BAR's own height; `overflow: visible` + * (`theme/20-shell.css`) means a row the pin is too short for still lays out and measures + * correctly, it only paints past the pinned box's edge, which is invisible for the one + * synchronous pass before the pin comes off. The pin is released only once the final class set + * is decided — after `fitCluster()`, before `publishBarHeight()` — which must measure the bar + * the reader actually gets. */ const pinned = bar ? Math.round(bar.getBoundingClientRect().height) : 0; const hadMinH = bar ? bar.style.minHeight : ''; - if (pinned > 0) bar.style.minHeight = pinned + 'px'; + const hadH = bar ? bar.style.height : ''; + if (pinned > 0) { bar.style.minHeight = pinned + 'px'; bar.style.height = pinned + 'px'; } if (bar) bar.classList.remove('fs-bar-stack', CLASS_IND_COMPACT, 'fs-bar-actrow'); fitTabStrips(); @@ -316,7 +330,7 @@ function fitChrome() { if (bar && (topBar || document.documentElement.hasAttribute('data-narrow'))) fitCluster(bar, menu); - if (pinned > 0) bar.style.minHeight = hadMinH; + if (pinned > 0) { bar.style.minHeight = hadMinH; bar.style.height = hadH; } publishBarHeight(bar); } @@ -572,18 +586,32 @@ return baseclass.extend({ * data tables' */ fitChrome, - /* The width a page's content column has, without reading layout: the sidebar or rail eats a - * known amount of the window and the shell adds a known padding, all memoised for fitShell(). - * Exported because a pass answering mid-scroll (fs-select's, for a table the poll just brought - * in) otherwise has only the window width, which in the sidebar layout is wrong by exactly the - * sidebar — at 800px the column is 520px, so a table judged to have room overflows. + /* The width a page's content column has: the sidebar or rail eats a known amount of the + * window and the shell adds a known padding, all memoised for fitShell(). Exported because a + * pass answering mid-scroll (fs-select's, for a table the poll just brought in) otherwise has + * only the window width, which in the sidebar layout is wrong by exactly the sidebar — at + * 800px the column is 520px, so a table judged to have room overflows. * * The arithmetic is columnWidth()'s; this only adds the page's current state. */ contentWidth() { - /* no layout read: the window width and gutter are whatever the last fitter measured, and - * the three attributes below are style. The bootstrap read serves a caller arriving - * before any fitter has run, which cannot happen mid-scroll. */ - if (!_shellOuter) measureShell(); + /* `_shellOuter` is refreshed only by measureShell(), which only fitShell() calls, and + * fitChrome() steps ASIDE FOR THE WHOLE SCROLL_IDLE WINDOW (400ms, fs-fit.js) whenever + * fit.scrolling() answers yes — including for a resize that lands mid-flick, since a + * resize is exactly what starts that window (fs-fit.js's resize observer feeds the same + * motion sampler `scrolling()` reads). A caller landing in that window, most of all + * fs-select's, got the width the PREVIOUS viewport had: at 568px settling to 390px, model + * stayed 568 for up to 220ms of the 400 (measured: −178px, exactly 568−390; + * ../tmp/task-vnstat/probe2.mjs, probe3.mjs; live-audit's `geometry|fs-content` finding on + * owrt2410, CI run 34364446910). + * + * So the window's own width is compared fresh on every call, not only when `_shellOuter` + * is still zero. `clientWidth` is the one read the old "no layout read" promise here was + * already conditional on: the bootstrap branch (no fitter has run yet) made this exact + * call through measureShell(). A plain `!==` compares against the cached width for free — + * nothing invalidated layout since the last read, so this costs nothing when nothing + * moved — and measureShell()'s own further reads (the resolved gutter) only run when the + * comparison says the width actually did. */ + if (document.documentElement.clientWidth !== _shellOuter) measureShell(); const root = document.documentElement; return columnWidth(shellGeometry(), { outerW: _shellOuter, diff --git a/luci-theme-footstrap/htdocs/luci-static/resources/fs-fit.js b/luci-theme-footstrap/htdocs/luci-static/resources/fs-fit.js index bd0f1c0a..8dac07a0 100644 --- a/luci-theme-footstrap/htdocs/luci-static/resources/fs-fit.js +++ b/luci-theme-footstrap/htdocs/luci-static/resources/fs-fit.js @@ -27,7 +27,12 @@ * arming is exported and the module that clears the rule is the one that raises it. */ function armGate() { if (!fittersEnabled()) return; - try { document.documentElement.dataset.fsFit = '1'; } catch (e) { /* no document, no gate */ } + /* WRITTEN AS THE LITERAL `dataset.fsFit`, never through a helper: tools/table-contract.mjs + * reads this file for exactly that spelling to prove the gate rule is still armed, and an + * indirection hides the write from it. The behaviour survives being factored out; the + * contract does not. */ + try { document.documentElement.dataset.fsFit = '1'; } + catch (e) { /* no document, no flag to write */ } } const _fitters = []; @@ -187,6 +192,51 @@ function deferMeasurement() { _deferred = true; } let _movingUntil = 0; let _lastOffset = null; let _sampling = false; +/* THE THEME'S OWN CORRECTION WRITE IS A SCROLL EVENT TOO, and this sampler cannot otherwise tell it + * from the reader's: `lateDrift()` and `applyAnchor()` write `scrollTop` directly, the browser + * dispatches `scroll` for that the same as for a finger, and `noteMotion()` below used to treat + * either as SCROLL_IDLE (400ms) of fresh motion — which then blocks `holdFloor()`, `rememberRest()` + * and `applyAnchor()` itself for that whole window, since all three refuse while `scrolling()`. On + * REPEAT's own back-to-back refills of one section a correction's write routinely landed inside the + * 700ms gap the next refill starts in: measured live (`../tmp/task-refill2/probe.mjs`, + * owrt2512b/chromium/Overview), a correction's write at t=6530 opened a motion window to t=6930, the + * next refill's mutation arrived at t=6811 — INSIDE it — and both `holdFloor()` and `rememberRest()` + * were silently refused for that refill: the floor never picked up the new content's real height and + * `_rest` kept describing the position from before it, so the correction two ticks later measured a + * fabricated 59px drift against that stale reference and wrote a real one, the exact 47-60px "never + * corrected" shape the gate reports. Two such self-inflicted writes are two misses by `lateDrift()`'s + * own count, which is what tripped `_engineTrusted` false in the same run though the engine had + * anchored correctly throughout. The write's own resulting offset is remembered here and consumed by + * `sawOwnWrite()` below, held (not consumed on the first look) until the offset actually leaves that + * pixel, so both watchers agree; a reader who scrolls to a different pixel in the meantime is + * unaffected. */ +let _ownWrite = null; +/* -> true if `y` is new motion the sampler must count; false if it still reads as this file's own + * last write settling. NOT single-shot — task refill2: `noteMotion()` (the `scroll` event) and + * `sampleMotion()`'s own frame loop both ask this of the SAME settling write when the sampler was + * already running before the write (an earlier, genuine motion still winding down), and a version + * that cleared `_ownWrite` on the first of the two to ask left the second — whichever it was — with + * nothing to recognise, reading the already-explained pixel as fresh motion and re-extending + * `_movingUntil` right back over the write's own settle. Measured live + * (`../tmp/task-refill2/probe.mjs`, owrt2512b/webkit/Overview @390 top, 3/3 reps): `scrolling()` never + * came back false at all between refills, `holdFloor()`/`rememberRest()` refused every one of them, + * and the reader drifted 59px on the second and third with no correction ever landing — the same + * shape a stale `_rest` produces, from a different cause. The marker now clears only once the offset + * moves to something ELSE, so however many places ask, the answer for THIS pixel stays consistent. */ +function sawOwnWrite(y) { + if (_ownWrite === null) return true; + if (Math.abs(y - _ownWrite) < 1) return false; + _ownWrite = null; + return true; +} +/* The one place either correction may write the scroll position, so `_ownWrite` cannot go stale by a + * write skipping it. Reads the offset back rather than trusting the argument: a write near either + * end of the document is clamped by the browser, and the pixel that actually lands is the one the + * next `scroll` event will report. */ +function writeOffset(sc, value) { + if (sc) sc.scrollTop = value; else window.scrollTo(0, value); + _ownWrite = sc ? sc.scrollTop : window.scrollY; +} /* Which element scrolls, asked once per width rather than once per frame. * @@ -229,14 +279,34 @@ function scrolling() { return Date.now() < _movingUntil; } function sampleMotion() { const y = scrollTop(); if (_lastOffset === null || y !== _lastOffset) { + const own = !sawOwnWrite(y); _lastOffset = y; - _movingUntil = Date.now() + SCROLL_IDLE; + if (!own) _movingUntil = Date.now() + SCROLL_IDLE; } if (scrolling()) { requestAnimationFrame(sampleMotion); return; } _sampling = false; + /* THE BOX, NOT THE REFERENCE — second attempt, also measured live and also wrong: a check + * against `_rest.el`'s own rect never sees this fault, because `_rest` is exactly what gets + * RE-ESTABLISHED, at whatever the offset currently is, by the very next successful + * `rememberRest()` — which may already have run, on a FRESH reference picked at the fold of an + * already-wrong position, before this ever gets to check anything. A reference cannot catch a + * fault in the ground it is itself read off. See `settleDeferredFloor()` for what holds instead: + * the OFFSET's own response to the ONE write below, measured directly, the same way + * `lateDrift()`'s `compensated` already checks the offset against `grow` — just for a shrink + * `holdFloor()` is about to (or, silently, already did) apply rather than one a mutation just + * grew. Both taken before `holdFloor()` runs it down: a box already settled through the ordinary + * mutation path in the meantime shows no shrink here, and costs one `parseFloat` to learn that. */ + const target = _deferredFloor; + _deferredFloor = null; + const floorBefore = (target && target.isConnected) ? (parseFloat(target.style.minHeight) || 0) : 0; + const offsetBefore = scrollTop(); /* the reader has stopped, so the floor and the reference both belong to where the page now * stands */ holdFloor(); + if (target && target.isConnected) { + const shrink = floorBefore - (parseFloat(target.style.minHeight) || 0); + if (shrink > 1) settleDeferredFloor(offsetBefore, shrink); + } rememberRest(); /* the page has held still for SCROLL_IDLE: whatever was put off may run now */ if (_deferred) { @@ -253,6 +323,7 @@ function sampleMotion() { } function noteMotion() { + if (!sawOwnWrite(scrollTop())) return; _movingUntil = Date.now() + SCROLL_IDLE; if (_sampling) return; _sampling = true; @@ -281,14 +352,23 @@ function noteUser() { (function watchMotion() { const opts = { passive: true, capture: true }; window.addEventListener('scroll', noteMotion, opts); - /* a gesture that IS the scroll: the reader is driving and the page is moving */ - for (const name of [ 'wheel', 'touchstart', 'touchmove' ]) + /* A gesture that IS the scroll, from the second event on: `touchmove` and `wheel` fire only once + * the page has already moved, so unlike `touchstart` they mean motion, not just presence. + * `scroll` (above) and momentum still start the sampler for whatever the first frame of a flick + * misses. */ + for (const name of [ 'wheel', 'touchmove' ]) window.addEventListener(name, noteUser, opts); - /* Intent only. A scrollbar drag and a Page Down move the page and say so themselves, through + /* Intent only: says the reader is present, not that the page is moving. `touchstart` used to sit + * above and feed `noteMotion` too, so a stationary tap on a tab declared the page moving for + * SCROLL_IDLE (400ms) and gated `fitChrome()` with it — the freshly drawn tab strip painted at + * full padding and only shrank once the sampler saw the page still, ~400ms after the tap. Real + * motion is read from the scroll POSITION by `sampleMotion`, not the event: `touchmove` and + * `scroll` above, plus momentum, all still start it, so nothing that actually moves the page + * loses its guard. A scrollbar drag and a Page Down move the page and say so themselves, through * `scroll`. Feeding them to `noteMotion` too would make `scrolling()` answer yes for 400ms after * any click and every keystroke, which gates every layout-reading pass in this file: while * typing into a form, 9 of 10 passes were skipped and landed in one burst afterwards. */ - for (const name of [ 'mousedown', 'keydown' ]) + for (const name of [ 'mousedown', 'keydown', 'touchstart' ]) window.addEventListener(name, noteIntent, opts); })(); @@ -359,21 +439,105 @@ function watch(el) { * It never fights the user: a page at the top has no offset to give back, and a drift under a pixel * is rounding. */ /* Does the engine anchor at all? Chromium and Firefox do — measured with their anchoring - * suppressed, a 120px growth above the fold moves the reader 120px, and 0px with it on. An older - * WebKit does not, and a current one anchors but gets the COLLAPSE case wrong instead (lateDrift() - * below). Correcting the offset in an engine that also corrects it means two corrections and a - * page that jumps the other way, so this is asked of the platform rather than of a browser name — - * `overflow-anchor` is the property that turns the feature off, and an engine that does not know it - * does not have it. */ + * suppressed, a 120px growth above the fold moves the reader 120px, and 0px with it on. So this is + * asked of the platform rather than of a browser name — `overflow-anchor` is the property that + * turns the feature off, and an engine that does not know it does not have it. Defended against an + * engine — or a stub, in a node-run test — with no `CSS` object at all; unreadable answers `true` + * (assumed handled rather than fought). + * + * Task wkanchor shipped a second question here, `ENGINE_MISANCHORS` + * (`-webkit-hyphenate-limit-before`), reasoning WebKit 26's own anchoring got a real correction + * wrong: +21-41px on the Overview, reader parked, real poll ticks, nothing above the fold growing + * by even a pixel. Task barpin found the real mover instead — `fitChrome()` (fs-chrome.js) pinned + * the bar against SHRINKING during its own measurement pass but not against GROWING, so the bar + * itself walked up to 107px taller than its settled height and back inside that one pass, on every + * engine; WebKit was never mis-anchoring, it was the one engine with no scroll anchoring of its own + * to absorb what the bar was actually doing. With `fitChrome()` pinned both ways, the same probe + * that measured +21-41px reads 0px on WebKit at 390/top with NO suppression at all + * (`../tmp/task-toplayout/top-probe.mjs --unsuppress`, 26s of real ticks) — `ENGINE_MISANCHORS` and + * the `data-fs-anchor-suppress` write it drove are gone with it; see `docs/anchoring.md`. */ const ENGINE_ANCHORS = (() => { /* dev switch: `localStorage.fsEngineAnchor = 'off'` makes any engine take the non-anchoring * path, which is otherwise only reachable on a machine with Safari on it */ try { if (localStorage.getItem('fsEngineAnchor') === 'off') return false; } catch (e) { /* no storage, no switch */ } - try { return typeof CSS !== 'undefined' && typeof CSS.supports === 'function' && CSS.supports('overflow-anchor', 'auto'); } - catch (e) { return true; } /* unreadable: assume it is handled rather than fight it */ + try { return typeof CSS !== 'undefined' && typeof CSS.supports === 'function' + ? CSS.supports('overflow-anchor', 'auto') : true; } + catch (e) { return true; } })(); +/* Support for the property is not proof it is doing the job on THIS page: CI showed a real engine + * decline to anchor a container refill on two separate passes, `overflow-anchor` still reading + * `true` throughout — a case `ENGINE_ANCHORS` above cannot see, because it is asked once, at load, + * of the platform. `lateDrift()` below already computes the residual after every refill the theme + * did not itself correct, so the evidence is left to accumulate rather than guessed at up front: + * two residuals it actually had to write back — task latenet's four-way ablation measured that + * write landing 419-420ms after the refill — and the observer stops trusting this engine, moving to + * the anchorFor()/scheduleAnchor() path instead, measured 7-36ms on the same refill, UNTIL + * TRUST_RECOVERY_LIMIT below says otherwise — not for the rest of the session unconditionally: a + * fork with no way back paid the full 7-36ms path forever after two ticks a loaded runner or a + * momentary layout hiccup could produce just as easily as a standing fault. One residual is left as + * headroom for a single one-off rather than tripping on the first. Never a browser name, only a + * count: an engine that keeps the reference itself never reaches the write this counts — Chromium + * and Firefox measure 0 residuals today — so the switch cannot trip for them. + * `docs/anchoring.md`, "Who is responsible", carries the numbers. */ +const LATE_MISS_LIMIT = 2; +let _lateMisses = 0; +let _engineTrusted = ENGINE_ANCHORS; +/* How much of the growth witness's own rounding a correctly-anchoring engine may leave unaccounted + * for before that gap reads as the engine declining rather than as the witness rounding — task + * missrule. Measured on a 32-36 row DHCP lease table at 390 wide, the one shape in the tree that + * rounds this large: 8px (compact), 12px (normal/large, webkit), 12.25px (large, firefox) — three + * points clustered tight against a 120px growth pad (`GROWTH`, tools/scroll-anchor.mjs), none of + * them a residual, all of them the engine having already done the whole correction + * (docs/anchoring.md, "The witness is not safe to write on its own"). 16 leaves 3.75px (30%) over + * the largest of the three — the same margin-over-the-worst-measured-cluster shape the gate's own + * `LATE_MS` uses — while staying far under half the pad (60px), so a genuine partial failure that + * leaves the reader in the middle of it is never read as rounding. */ +const LATE_ROUND_TOLERANCE = 16; + +/* Trust that was never allowed back — task trust. Once `_engineTrusted` went false the fork above + * stayed on the `anchorFor()`/`scheduleAnchor()` path for the rest of the session even where the + * two misses that tripped it were the engine having a bad ten seconds, not a standing fault. + * + * TWO SHAPES TRIED HERE WERE WRONG, BOTH MEASURED — worth keeping the failures, not only the fix, + * since a maintainer three lines below reasoning "just read the same drift `lateDrift()` reads" or + * "just compare the offset to the growth" is about to reproduce one of them. + * + * First shape: `applyAnchor()` already reads `ref.el`'s own rect against the remembered top before + * deciding whether to write — the same measurement `lateDrift()` uses to call a miss on the trusted + * path — so a hit was counted there whenever that drift read under a pixel. Live against a real, + * correctly-anchoring engine (`../tmp/task-trust/probe.mjs`, chromium/owrt2410, the Overview's own + * poll-sized section) that branch never ran at all: `anchorFor()`'s OWN offset read forces the + * layout the engine's scroll-anchoring resolves against, so by the time it asks "did the reader + * move", the engine has ALREADY moved the offset to absorb the growth — and `anchorFor()`, built for + * an engine that does none of that, reads any offset change that is not a downward clamp as the + * READER having scrolled and returns null. `scheduleAnchor()` then never runs, so `applyAnchor()` + * never sees the one tick that would prove the engine right — 0 hits recorded across 5 genuinely + * successful refills, measured directly (a debug build exporting `_lateHits` read 0 throughout). + * + * Second shape: read the offset itself instead, in the SAME microtask `grew` (below) is already + * read in, before `run()` can overwrite `_restAt` — `compensated = scrollTop() - _restAt` against + * `grew`, the identical comparison `lateDrift()` makes on the trusted path (`seen - ref.at`), just + * without a rAF plus `SCROLL_IDLE` to wait out. This one DOES see the engine work, but it is not + * strict enough: measured against a genuinely PARTIAL correction (an offset that moved by about the + * right amount overall), `compensated` matched `grew` within `LATE_ROUND_TOLERANCE` while the + * gate's own independent mark still sat 48px off, uncorrected — the container growing by roughly the + * right amount is not the same fact as the READER'S OWN reference holding, and task blindref already + * proved a container-based witness can agree with a bad tick. + * + * What holds: `_rest.el` itself, read directly rather than through `anchorFor()` — the identical + * reference and the identical comparison `lateDrift()` trusts on the OTHER path, just made here, + * before `run()`, instead of a rAF plus `SCROLL_IDLE` later, since the compensation is already done + * by the time anything in this callback reads geometry. A false negative here only delays recovery; + * this shape has no cheaper approximation that does not risk a false positive instead. Proven the + * same way as the two failures: the identical 5-refill run holds `_rest.el`'s drift under a pixel on + * every one, `_engineTrusted` returns `true` on the second, and the reader's own mark never moved + * (`moved: 0` throughout, both phases) — recovery costs no visible correction of its own, because + * there is nothing left for one to do. */ +const TRUST_RECOVERY_LIMIT = 2; +let _lateHits = 0; + /* What the reader was looking at, captured while the page was still. `anchorRef()` runs from the * mutation observer, i.e. after the DOM changed: right for the FITTERS, which have not run yet, and * blind to the mutation itself. An anchoring engine covers that other half; where none does, the @@ -384,6 +548,22 @@ let _rest = null; * both scrollers on a client navigation and replays them on a Back, and neither is a clamp to * undo. */ let _restAt = null, _restPage = null; +/* The floored box a mutation found `holdFloor()` refused for (`scrolling()` was true) — its own + * shrink or grow still happens eventually, once `holdFloor()` finally does run, and until now that + * later call was `sampleMotion()`'s own bare `holdFloor(); rememberRest();`, wired to neither + * `lateDrift()` nor `scheduleAnchor()` — task wkrefill. Stashed by the mutation callback below, + * cleared the moment any tick's `holdFloor()` stops being refused, consumed once by + * `sampleMotion()`/`settleDeferredFloor()` (the write, and why it checks the OFFSET rather than a + * reference element, are there). Measured live (`../tmp/task-wkrefill/run-probe2.mjs`, + * webkit/owrt2512b @390 top, normal): a growth-then-shrink refill landing entirely inside one + * motion window left `_restAt` 59px higher than it started — `mark`'s own PAGE position never + * changed (7441.15625px throughout) while its viewport position read 440 against a `before` of 499 + * — because the shrink's `min-height` write (a real scroll-anchor invalidation, `holdFloor()`'s own + * citation) landed inside `sampleMotion()`'s unwired call, the engine gave back only 61px of the + * 120px it owed, and the 59px gap was adopted as truth by the very next `rememberRest()`, + * uncounted and uncorrected — the exact shape task refill2's `compensated` check already catches on + * the GROWTH side, missing here only because nothing measured the SHRINK side at all. */ +let _deferredFloor = null; function pageStamp() { return (document.body && document.body.getAttribute('data-page')) || ''; } @@ -393,8 +573,19 @@ function forgetRest() { _restAt = null; _restPage = null; } -function rememberRest() { - if (scrolling()) return; +/* `force`: skip the `scrolling()` guard — for the one caller that just wrote the scroll offset + * itself and needs the reference to match THAT write, not whatever unrelated motion happens to have + * `_movingUntil` still in the future at that instant. `lateDrift()`'s own correction and the + * engine's real compensation for the SAME underlying mutation both settle around the same + * SCROLL_IDLE window, so the two routinely overlap by a few milliseconds — measured live + * (`../tmp/task-refill2/probe.mjs`, owrt2512b/chromium/Overview): an ordinary, unforced + * `rememberRest()` right after the write was refused on `scrolling()` still reading true from the + * engine's own, unrelated scroll event 1ms earlier, leaving `_rest` stale for the NEXT refill and + * reproducing the same fabricated drift this call exists to prevent. Safe here specifically because + * the write just performed is a single, deliberate one this file made, not a multi-step animation to + * read mid-flight — by the time this call happens, that write has already landed. */ +function rememberRest(force) { + if (scrolling() && !force) return; /* A page at the top has nothing to be put back to, so it does not pay for a reference: at * offset 0 there is nothing to lose, and anchorRef()'s hit test plus rect costs 0.2ms typical, * 6ms on a poll-dirtied WebKit layout. The offset is still remembered — one read, and @@ -566,7 +757,7 @@ function anchorEnabled() { * scrolls, not across a navigation, never more than a viewport. */ let _lateFrame = 0; -function lateDrift(ref) { +function lateDrift(ref, grow, floorShrink) { /* the reference from BEFORE this tick, captured by the caller: one taken after the mutation * describes the page as the mutation left it, so its drift is zero by construction */ if (_lateFrame || !ref) return; @@ -607,22 +798,198 @@ function lateDrift(ref) { if (!ref.sec || !ref.sec.isConnected || ref.secTop == null) return; el = ref.sec; was = ref.secTop; } - const drift = el.getBoundingClientRect().top - was; + let drift = el.getBoundingClientRect().top - was; + /* THE WITNESS CAN BE BLIND. `el`/`ref.sec` is whatever anchorRef() hit-tested at the fold + * on the LAST still page — it is not guaranteed to sit below the container this tick + * actually refilled, and an element's own top does not move when growth happens somewhere + * it is not connected to. Measured live: a compact-density reference at top -362 read 0px + * of drift on 13 of 13 refills while the reader sat 120px off (CI, webkit/owrtsnap @1440 + * side, task blindref). `grow` — the mutation record's OWN target measured by the caller + * (observeContent()) against the height `data-fs-floor` pinned it at before this tick — + * cannot make that mistake: it IS what the refilled container actually grew by, not a + * guess at what moved. + * + * IT IS NOT A SAFE NUMBER TO WRITE ON ITS OWN, though — task detector, reverting the claim + * this comment used to make. `compensated` is what the OFFSET already did since the + * reference was taken; where it is exactly zero the engine never touched the offset at + * all, the same blindness `drift` above just had, and `grow` is the only witness that saw + * it — writing the whole growth back is correct and IS a miss: the engine did nothing. + * Where `compensated` is NOT zero the engine already moved the offset roughly by its own + * anchoring, and a SMALL gap between the two is not a residual to correct — it is this + * witness's own rounding on a many-row table re-laid at a narrow width: a 32-36 row DHCP + * lease table clamped by exactly 8px (compact), 12px (normal/large, webkit) or 12.25px + * (large, firefox) while `compensated` already matched `grow` to within that same amount, + * on BOTH engines, at every density and every layout tested (task detector, 21 CI + * findings, /admin/network/dhcp @390 — the overshoot equalled the clamp the gate itself + * reported in every one). Writing that gap is a second correction on top of one the engine + * already made; instrumented locally against the failing cell, withholding the write reads + * `swap moved 0px` on all 21 with no write logged, engine alone. + * + * BUT a gap that small is not the only shape this branch used to see, and task detector's + * own `>= 1` counted every one of them as a miss regardless of size — so on the SAME table, + * two ticks (10s) later, `_engineTrusted` went false while the engine was still anchoring + * perfectly (task missrule, `../tmp/task-anchor-audit/inventory.md` §2.2): the fast path + * then ran ALONGSIDE a live engine, the exact "two corrections throw the page the other + * way" `ENGINE_ANCHORS` above warns about. A miss must mean the engine did not do the job, + * not that this witness rounded — so only a gap ABOVE `LATE_ROUND_TOLERANCE` counts as one; + * within it, the engine did the job and lateDrift() returns having written nothing, same as + * the direct `drift < 1` case two lines below. Below the tolerance is not "no drift to + * report" — WITHIN it, this file already knows the engine is right, which `drift` alone + * (still whatever `anchorRef()`'s possibly-blind reference read) does not. Re-measured live + * against a real engine that never anchors this section at all (task missrule, + * ../tmp/task-missrule/probe.mjs, webkit and chromium, a table swapped three times running): + * `compensated` stays exactly 0 every tick, so this branch is never reached for that case — + * it counts the ordinary way, below, and `_engineTrusted` still goes false on the second + * one, switch working as built. */ + if (Math.abs(drift) < 1 && grow > 1) { + const compensated = seen - ref.at; + if (Math.abs(compensated) < 1) drift = grow - compensated; + else if (Math.abs(grow - compensated) > LATE_ROUND_TOLERANCE) { + /* fresh distrust starts the recovery count at 0 too — a streak from a PREVIOUS + * spell of distrust proves nothing about this one */ + if (++_lateMisses >= LATE_MISS_LIMIT) { _engineTrusted = false; _lateHits = 0; } + return; + } + /* else: within table-row rounding — drift is still whatever it was (< 1 per the guard + * above), so the plain `drift < 1` return two lines down is what fires, unwritten and + * uncounted: the engine did the job. */ + } if (Math.abs(drift) < 1) return; /* the engine put it back */ if (Math.abs(drift) > (window.innerHeight || 800)) return; const sc = scroller(); const at = sc ? sc.scrollTop : window.scrollY; - if (sc) sc.scrollTop = at + drift; else window.scrollTo(0, at + drift); - /* The write moves the page by exactly the drift measured, which puts the reference back - * at the top it was remembered at, so `_rest.top` still holds and the next tick - * measures zero. Only `_restAt` changes, and the write may have been clamped short, so - * it is re-read rather than assumed; `rememberRest()` cannot do it, since the write - * starts the motion sampler and that function returns early while the page moves. */ - _restAt = scrollTop(); + writeOffset(sc, at + drift); + /* A FRESH, FORCED rememberRest(), not just `_restAt = scrollTop()` — task refill2. The + * write moves the page by exactly the drift measured, so `_rest.top` still holds FOR THIS + * TICK's own `el`, but `_rest` itself was taken by run() at the top of THIS callback, + * before the mutation had a settled height and before the engine had done any of its own + * compensating scroll for it — a snapshot mid-transition, not the page as it will stay. + * Left standing, the NEXT refill's own correction reads its drift against that stale, + * mid-transition top instead of the one this write just settled, and computes a fabricated + * number: on REPEAT's own back-to-back refills of one section this was the 59px "never + * corrected" drift itself, not merely late bookkeeping. `force` (`rememberRest()`'s own + * comment) because the engine's real, unrelated compensation for the SAME underlying + * mutation routinely settles inside the same SCROLL_IDLE window as this write and leaves + * `scrolling()` reading true by a handful of milliseconds — an unforced call here reproduced + * the identical fabricated drift on the very next refill (measured, + * `../tmp/task-refill2/probe.mjs`, owrt2512b/chromium/Overview: `moved 0, 0, -59` without + * `force`, `moved 0, 0, 0` with it, both `trusted true` throughout). */ + rememberRest(true); + /* A DROP IN THIS SAME BOX'S OWN FLOOR IS NOT EVIDENCE ABOUT THE ENGINE — task refill2. Every + * `run()` clears and rewrites `r.target`'s `min-height`, and a WRITE to that property is a + * scroll-anchor invalidation in its own right (`holdFloor()`'s own citation), independent of + * how reliably this engine otherwise keeps a reference: a floored box whose content really + * did shrink pays this cost on every engine, every time, structurally — counting it toward + * `_lateMisses` measures the theme's own floor bookkeeping, not the engine, and two ordinary + * shrinks ten seconds apart used to be enough to distrust an engine that had anchored every + * real growth on the same section at 0px throughout (measured, `../tmp/task-refill2/ + * probe.mjs`, owrt2512b/chromium/Overview: `trustedBefore true, trustedAfter false`, reader + * never moved). The correction still runs — P1/P2 do not care why the engine left a + * residual — only the bookkeeping is skipped. */ + if (floorShrink > 1) return; + /* A DIRECT DRIFT INSIDE THE SAME TOLERANCE THE BLIND BRANCH ALREADY USES IS THE SAME + * ROUNDING, NOT A SECOND FAULT — task refill2. The blind branch above only ever sees this + * table's row-rounding when the engine's own compensation left `drift` under 1px; on the + * SAME table's GROWTH refill this measured a direct `drift` of exactly 1px against a 132px + * growth (`../tmp/task-refill2/probe.mjs`, owrt2512b/chromium, `/admin/network/dhcp @390` + * side and top) — one pixel over the `< 1` line above, so neither guard caught it, and a + * write this small still counted as a miss. `REPEAT`'s own three-refill window turns that + * into two: one from this 1px growth-side rounding, a second from the very next one, and + * `_engineTrusted` tripped false on an engine anchoring within a pixel every time. Read + * against the SAME LATE_ROUND_TOLERANCE the blind branch already measured this exact page + * and width against (8-12.25px) rather than a new number for what is the same table. */ + if (Math.abs(drift) <= LATE_ROUND_TOLERANCE) return; + /* This engine did not keep the reference across a container refill, once more on this + * page — see LATE_MISS_LIMIT above for what happens once that has been measured twice. */ + if (++_lateMisses >= LATE_MISS_LIMIT) { _engineTrusted = false; _lateHits = 0; } }, SCROLL_IDLE); }); } +/* ---- a floor `holdFloor()` could not clear at mutation time, cleared later with nobody watching ---- + * + * `_deferredFloor`'s own comment has the fault; this is the fix, and it needs a THIRD frame slot, + * not either of the two `lateDrift()`/`scheduleAnchor()` already own. Measured live, first attempt: + * routing the same information through `lateDrift(ref, 0, floorShrink)` from `sampleMotion()` + * collided with the regular mutation's OWN pending call for the SAME tick — `seen` there is + * captured one rAF after the ORIGINAL (refused) mutation, well before `sampleMotion()` ever gets to + * clear the floor, so by the time this one tried to arm, `_lateFrame` was still occupied, and by + * the time the ORIGINAL one's own timeout fired, `holdFloor()`'s belated write had already moved + * the offset on its own — read by that timeout as `scrollTop() !== seen`, "the reader is still + * moving", and refused too. Two correct guards, aimed at two different questions, defeating each + * other on the one tick both fire for. + * + * NOT A REFERENCE ELEMENT'S OWN DRIFT — second attempt, also measured live and also wrong, and the + * one worth explaining because it looks safer than it is. Checking `_rest.el`'s (or `ref.sec`'s) + * rect the way `lateDrift()` does cannot see this fault BY CONSTRUCTION: `_rest` is exactly what + * gets RE-ESTABLISHED, at whatever the offset happens to be, by the very next successful + * `rememberRest()` — which runs a fresh `anchorRef()` hit test at the CURRENT fold, wherever that + * now falls. Once one has run on an already-59px-wrong offset, the reference it picks (measured + * live: an `H3` a NEW hit test landed on, in a position the fold only reaches because the offset is + * already wrong) shows zero drift for ever after — it was established AT the wrong position, not + * moved away from a right one. A witness cannot catch a fault in the ground it is itself read off. + * + * WHAT HOLDS: the OFFSET's own response to the ONE write below, measured directly against how much + * the box actually shrank — the same `compensated` vs `grow` comparison `lateDrift()`'s blind branch + * already makes for a GROWTH, just made here for a SHRINK `holdFloor()` is about to apply (or, + * silently, already did) rather than one a mutation just grew. Neither snapshot depends on `_rest` + * staying pure, so neither can be corrupted by the fault this exists to catch. */ +/* NOT GATED ON `scrolling()` — third attempt, also measured live and also wrong, and the one + * `lateDrift()`'s own comment already warned this file about once: "an anchoring engine moves the + * offset ITSELF … so an offset that merely differs is the engine working, and refusing on that + * leaves the engine's own residual uncorrected." `holdFloor()`'s belated write is exactly such a + * change — a real `min-height` clear the engine reacts to by moving the offset — and that reaction + * dispatches its own `scroll` events, which is what this correction exists to read. Gating on + * `scrolling()` therefore refuses on the very motion it is trying to observe: measured live, + * `scrolling()` still read true one whole rAF after `holdFloor()` ran, on every one of three cells, + * because the reaction itself kept re-arming `_movingUntil`. `lateDrift()` does not make this + * mistake either — it checks `scrollTop() !== seen` (STILL, not "not moving"), two reads apart, the + * same check used here: two rAFs, not `SCROLL_IDLE` (400ms) — `REPEAT`'s own back-to-back refills + * leave under a second between this write's inputs being known and the NEXT refill's mutation + * landing, and a 400ms wait routinely lands its own check after that next refill has already + * restarted the motion sampler, checking a `now` the reader has already moved past. */ +let _floorLateFrame = 0; +function settleDeferredFloor(offsetBefore, shrink) { + if (_floorLateFrame) return; + _floorLateFrame = requestAnimationFrame(() => { + const seen = scrollTop(); + _floorLateFrame = requestAnimationFrame(() => { + _floorLateFrame = 0; + if (!anchorEnabled() || Date.now() < _userUntil) return; + if (_restPage !== pageStamp()) return; + if (scrollTop() !== seen) return; /* still settling, or the reader has moved */ + /* A box that shrinks above the reader must lower the offset by the same amount for them + * to stay put — `wanted` is that target, not an estimate: `shrink` is what the box + * actually gave up, read fresh by the caller against its own pre-write height, the + * identical measurement `grow` already is for the growth side. */ + const wanted = offsetBefore - shrink; + const gap = wanted - seen; + if (Math.abs(gap) <= LATE_ROUND_TOLERANCE) return; /* the engine already gave it back */ + if (Math.abs(gap) > (window.innerHeight || 800)) return; + const sc = scroller(); + const at = sc ? sc.scrollTop : window.scrollY; + writeOffset(sc, at + gap); + /* `_rest` ADJUSTED IN PLACE, NOT `rememberRest(true)` — fourth attempt, also measured + * live and also wrong: this write's own `scroll` event can still be in flight when this + * line runs, and `rememberRest(true)` calls `anchorRef()` regardless of `force` — + * `anchorRef()` has its OWN, unconditional `if (scrolling()) return null;` guard, so a + * write landing inside that window leaves `_rest` NULL rather than merely stale. Measured + * live (`../tmp/task-wkrefill/run-probe.mjs --cellonly owrt2410b@top`): the very next + * mutation's `lateDrift()` then refused with "no ref", `_rest` was re-established fresh + * off whatever the fold happened to be two ticks later, and the reader ended up 120px off + * in the OTHER direction — worse than doing nothing. `_rest.el` itself did not move; only + * the offset it was measured against did, by exactly `gap`, so its remembered screen + * position shifts by the same amount and nothing needs re-reading off the page. */ + if (_rest) { _rest.top -= gap; if (_rest.sec) _rest.secTop -= gap; _rest.at = scrollTop(); } + _restAt = scrollTop(); + /* NOT COUNTED TOWARD `_lateMisses` — same rule as `lateDrift()`'s own `floorShrink > 1` + * skip: this write answers for the theme's own bookkeeping catching up late, not for + * anything the engine declined to do, so it says nothing about whether the engine can be + * trusted on an ordinary tick. */ + }); + }); +} + function scheduleAnchor(ref) { if (!ref || !anchorEnabled()) return; if (_anchorPending) return; @@ -632,10 +999,14 @@ function scheduleAnchor(ref) { _anchorFrame = 0; const pending = _anchorPending; _anchorPending = null; - applyAnchor(pending); + const wrote = applyAnchor(pending); /* after the correction, never before: the reference must describe the page as the reader now - * sees it, or the next tick pays the same drift twice */ - rememberRest(); + * sees it, or the next tick pays the same drift twice. Forced only where a write just + * happened — task refill2's `force` on `rememberRest()` is for resyncing after THIS file's + * own write, not for skipping the guard when `applyAnchor()` did nothing (refused because the + * page was moving, at the top, or the reference was gone): forcing unconditionally would read + * a reference off a page mid-flick on exactly the refusal this guard exists for. */ + rememberRest(wrote); }); } function applyAnchor(ref) { @@ -657,22 +1028,28 @@ function applyAnchor(ref) { * one case to sit out. */ if (ref.by != null) { if (ref.by < 1) return; - if (sc) sc.scrollTop = at + ref.by; - else window.scrollTo(0, at + ref.by); - return; + writeOffset(sc, at + ref.by); + return true; } if (at <= 0) return; if (!ref.el.isConnected) return; const drift = ref.el.getBoundingClientRect().top - ref.top; - if (Math.abs(drift) < 1) return; + if (Math.abs(drift) < 1) return; /* nothing needed correcting here */ + /* A definite write is a definite miss — task trust: any recovery streak counted so far said + * nothing about THIS tick, and this tick just proved the engine did not do the job on its own. + * (Recovery evidence itself is gathered earlier, in the mutation callback — see TRUST_RECOVERY + * _LIMIT above: this path never sees the tick that proves the engine right, because a reference + * the engine has already put back is exactly what makes anchorFor() return null instead of + * reaching here — measured live, `../tmp/task-trust/probe.mjs`.) */ + _lateHits = 0; /* A correction is a scroll the reader did not ask for, so an absurd one is a bug: a view that * replaced its whole subtree can move a reference by thousands of pixels. One viewport and 200px * is the most a single tick can honestly account for — where `innerHeight` is unreadable those * 200px are the whole ceiling — plus whatever the engine is on record for having clamped away * (`slack`, see anchorFor()). */ if (Math.abs(drift) > (window.innerHeight || 0) + 200 + (ref.slack || 0)) return; - if (sc) sc.scrollTop = at + drift; - else window.scrollTo(0, at + drift); + writeOffset(sc, at + drift); + return true; } /* Rule 2's mutation side. Deliberately not filtered by node type: a filter is a second place to @@ -686,7 +1063,7 @@ function applyAnchor(ref) { * constructor, and luci-base instantiates a class once, at the first require. */ function observeContent() { if (_mo) return; - _mo = new MutationObserver(() => { + _mo = new MutationObserver((records) => { /* The theme corrects only where the engine will not. Where it anchors, growth above the * reader is the engine's job and the floor covers the collapse, so there is nothing left for * a correction to do: one written here would read its reference in the same instant the poll @@ -701,9 +1078,83 @@ function observeContent() { * within the frame, so the immediate correction stays, measured against the reference from * the last still page. */ const settled = _rest; - const ref = ENGINE_ANCHORS ? null : anchorFor(); + /* `_engineTrusted`, not `ENGINE_ANCHORS`: the platform check above answers once, at load, + * whether the property exists — it cannot see an engine that has it but declines to use it + * on a given refill, which is what `lateDrift()`'s own residual count is for (LATE_MISS_LIMIT + * above). Once that has happened twice this session the fork moves here too, so the engine + * gets no third 420ms-late chance at a correction the fast path already does in 7-36ms. */ + const trustEngine = _engineTrusted; + const ref = trustEngine ? null : anchorFor(); + /* THE RECORD'S OWN TARGET, read before run() below rewrites its floor for the NEXT tick — the + * only place this callback sees which container a poll actually refilled, as opposed to + * whichever element anchorRef() happened to hit-test at the fold, which need not be connected + * to THIS growth at all (task blindref). A record's target already wearing `data-fs-floor` IS + * the box holdFloor() pinned at its last settled height, so its height against that pin, taken + * NOW — the mutation already happened, so this is its final height; nothing here waits on the + * engine, which only ever moves the SCROLL POSITION, never an element's own size — is the + * growth lateDrift() needs, in pixels rather than a live reference to carry forward. + * + * FOUND EVERY TICK, TRUSTED OR NOT — task trust. Gating this to the trusted branch was fine + * while distrust was permanent, since nothing downstream of it would ever read the number + * again; recovering trust needs to tell a tick that tested the engine from one that tested + * nothing on the distrusted path too, in the recovery check right below, so the read can no + * longer be skipped there. One extra `records.find` and an `offsetHeight` per distrusted + * tick — the one path that used to pay nothing here at all. */ + const r = records.find((m) => m.type === 'childList' && m.target.hasAttribute('data-fs-floor')); + /* a box freshly wearing its FIRST floor has no "before" to measure against — parseFloat + * of an unset `min-height` is NaN, `|| 0` reads as "no growth" rather than false growth + * the size of the whole box */ + const before = r && (parseFloat(r.target.style.minHeight) || 0); + const grew = before ? r.target.offsetHeight - before : 0; + /* RECOVERY EVIDENCE, task trust — read here and nowhere else; see TRUST_RECOVERY_LIMIT's own + * comment for why `applyAnchor()` cannot see it. THE SAME REFERENCE `lateDrift()` trusts on + * the other path (`_rest.el`'s own rect against the top it was remembered at), read before + * `run()` can overwrite it, instead of a rAF plus `SCROLL_IDLE` later — the compensation is + * already done by the time anything here reads geometry (`anchorFor()`'s own read, just + * above, forces the layout the engine resolves it in). + * + * NOT `compensated` vs `grew` (the OFFSET against the CONTAINER'S height, `lateDrift()`'s own + * comparison for the case its element-based drift is blind) — measured live and wrong here: + * `../tmp/task-trust/probe.mjs` against a genuinely partial correction (an offset that moved + * ROUGHLY the growth pad's own size) read `compensated≈grew` and recovered trust while the + * probe's own independent mark still sat 48px off, uncorrected. The container growing by + * about the right amount is not the same fact as THIS reference holding, and recovery needs + * the stricter of the two: a false negative here only delays recovery, a false positive + * un-distrusts an engine that is still getting it wrong. */ + if (!trustEngine && grew > 1 && _rest && _rest.el.isConnected && Date.now() >= _userUntil + && !scrolling() && _restPage === pageStamp() + && Math.abs(_rest.el.getBoundingClientRect().top - _rest.top) < 1 + && ++_lateHits >= TRUST_RECOVERY_LIMIT) { + _engineTrusted = true; + _lateMisses = _lateHits = 0; + } + /* THE SAME BOX'S FLOOR, BEFORE AND AFTER THIS run() — task refill2. `holdFloor()` inside + * run() clears and rewrites `r.target`'s own `min-height` every tick, which is a scroll- + * anchor-invalidating style write on its own account (css-scroll-anchoring-1 §2.2.2, + * `holdFloor()`'s own comment) — so a floored box whose CONTENT genuinely shrinks (a poll's + * data losing rows, or in this callback the mutation record ITSELF being a removal) drops the + * engine's own anchoring for that write no matter how reliable the engine otherwise is. That + * residual reads to `lateDrift()` exactly like an engine that declined a real refill — the + * `grow` witness above is already 0 for it (`before` still equals the box's own pre-shrink + * offsetHeight at the point `grew` was read, min-height not yet cleared) — and every one of + * them used to count as a miss: measured live (`../tmp/task-refill2/probe.mjs`, + * owrt2512b/chromium/Overview, `REPEAT_TIMES` back-to-back refills of one section), two such + * shrinks ten seconds apart tripped `_engineTrusted` false on an engine that had anchored + * every real growth on the same section at 0px throughout. Read AFTER run(), which is what + * actually clears and rewrites it for this tick. */ + /* STASHED BEFORE run(), against the identical `scrolling()` its own `holdFloor()` call is + * about to check: a floored box `holdFloor()` is refused for right now still shrinks or grows + * eventually — see `_deferredFloor`'s own comment for where and why nothing used to notice. + * THE BOX ITSELF, not a height or a reference: `settleDeferredFloor()` re-reads the height + * fresh at consumption time, so an intervening successful sweep of the SAME box (this tick's + * own `run()`, or another mutation's) leaves nothing stale behind — cleared below the moment + * any tick's `holdFloor()` actually runs, for the identical reason. */ + const wasScrolling = scrolling(); + if (r && before && wasScrolling) _deferredFloor = r.target; run(); - if (ENGINE_ANCHORS) lateDrift(settled); + if (!wasScrolling) _deferredFloor = null; + const floorShrink = (r && before) ? Math.max(0, before - (parseFloat(r.target.style.minHeight) || 0)) : 0; + if (trustEngine) lateDrift(settled, grew, floorShrink); else scheduleAnchor(ref); }); const hosts = [ document.getElementById('view') || document.body, document.getElementById('modal_overlay') ] @@ -725,20 +1176,35 @@ function observeContent() { _moFlag = new MutationObserver(run); _moFlag.observe(document.body, { attributes: true, attributeFilter: [ 'class' ] }); - /* A TAB SWITCH MUTATES NO NODE. ui.tabs writes `data-tab-active` on the panes, so the - * {childList} registration above never wakes and the floor the pane wore while it was open - * stays on it — and `min-height` beats the `height: 0` an inactive pane is collapsed with - * (theme/30-tables.css), so that floor IS blank page above the tab the reader just opened. - * Measured on 25.12, /admin/network/network, Interfaces -> Devices: 1299px left standing, the - * document at 2647px against 1720 and the content the reader came for 1559px down, still there - * 13 s later on a page whose poll never mutates #view (tools/floor-contract.mjs, issue #75). + /* A TAB SWITCH — OR A DISCLOSURE CLOSING, OR A depends() ROW HIDING — MUTATES NO NODE. ui.tabs + * writes `data-tab-active` on the panes and fs-appearance.js's foldable() closes by writing + * `hidden`/`aria-expanded` only, so the `{childList}` registration above never wakes for either + * and the floor taken while the content was open/visible just stays — `min-height` beats the + * `height: 0` a hidden pane collapses with (theme/30-tables.css), so that floor IS blank page. + * Measured on 25.12, /admin/network/network, Interfaces -> Devices: a tab switch left 1299px + * standing, the document at 2647px against 1720, still there 13s later on a page whose poll + * never mutates #view (tools/floor-contract.mjs, issue #75); the disclosure shape measured + * 731/1485/1485 (open/close/still-1485) on /admin/system/footstrap before this observer + * covered it, 731/1485/731 with it (docs/anchoring.md). + * + * STOCK LuCI HIDES A ROW THE SAME WAY, WIDER: form.js's setActive() — what every `depends()` + * calls — toggles the CLASS `hidden` on the `[data-field]` element, not the attribute. `class` + * cannot join `data-tab-active`/`hidden`/`aria-expanded` in this filter unguarded — the poll + * rewrites row classes on every tick, and an unfiltered `class` watch would call run(), a + * forced layout, on every one of them (see _moFlag's own comment) — so a `class` record only + * counts where the mutated element itself carries `data-field`, a property check with no + * forced layout, once per delivered record rather than once per poll tick. Measured: System -> + * System -> Time Synchronization, unticking "Enable NTP client", left 258px of empty ground + * before this filter existed and 0px with it (../tmp/task-spoilerfloor/probe3.mjs). * * A THIRD observer for the reason the second one exists — observe() replaces the options of a - * registration for the same node. The filter keeps it to the one attribute: `subtree: true` on - * `class` would wake run() on every row the poll rewrites. */ - _moTabs = new MutationObserver(run); + * registration for the same node; ONE registration per host covers all four attributes since + * none of this needs `subtree: true` on a different scope than `data-tab-active` already has. */ + _moTabs = new MutationObserver((records) => + records.some((r) => r.attributeName !== 'class' || r.target.dataset.field) && run()); for (const host of hosts) - _moTabs.observe(host, { attributes: true, attributeFilter: [ 'data-tab-active' ], subtree: true }); + _moTabs.observe(host, { attributes: true, + attributeFilter: [ 'data-tab-active', 'hidden', 'aria-expanded', 'class' ], subtree: true }); } @@ -779,6 +1245,15 @@ return baseclass.extend({ * here at all". */ restAt: () => _restAt, + /* -> whether this session still lets the engine's own scroll anchoring correct a refill, or has + * moved to the anchorFor()/scheduleAnchor() fallback instead (LATE_MISS_LIMIT above) — until + * TRUST_RECOVERY_LIMIT measured refills in a row put it back (task trust). Unmarked for the same + * reason `restAt` is: a browser sweep against the INSTALLED package needs it, and a probe marker + * is what packaging strips. Task missrule — SWAP closes after one refill, so nothing before this + * could see the flag go false on the SECOND one; this is what a several-refill case reads instead + * of inferring it from timing. */ + engineTrusted: () => _engineTrusted, + /* "the offset is mine now, forget what you remembered": called by fs-router when it resets both * scrollers for an incoming page. The router resets synchronously and stamps `body[data-page]` * an await later, so in between a poll tick from the OUTGOING page satisfies every term of "the diff --git a/luci-theme-footstrap/htdocs/luci-static/resources/fs-router.js b/luci-theme-footstrap/htdocs/luci-static/resources/fs-router.js index 91a94816..792b0ab9 100644 --- a/luci-theme-footstrap/htdocs/luci-static/resources/fs-router.js +++ b/luci-theme-footstrap/htdocs/luci-static/resources/fs-router.js @@ -419,14 +419,53 @@ function restoreScroll(pos, gen) { * asynchronously, so a flag around the write would already be false — the position last written * is remembered instead, and a scroll landing exactly there is ours. * - * Passive listeners: this must never sit in front of the scroll it watches for. */ + * Passive listeners: this must never sit in front of the scroll it watches for. + * + * AND ONLY ON AN AXIS THIS `pos` ACTUALLY CARRIES. One `cancelled` flag serves both scrollers, so + * an event on the axis this layout does NOT use — a stray write to the other scroller, from + * anywhere in the document, while THIS one is still waiting for its content to grow tall enough — + * used to read as "the reader scrolled" and cancel the whole restore, killing the axis that WAS + * legitimately pending over one that was never being restored at all. Reproduced without a real + * router (`../tmp/task-back/repro2.mjs`): a bare `window.scrollTo(0, 111)` from an unrelated + * script while the sidebar layout's `#maincontent` restore was still pending left the reader at 0 + * for the rest of the 5 s window instead of the parked 3000; scoping the check to the axis `pos` + * carries fixes it, samples unchanged (3000). + * + * A SAME-axis false alarm survives that fix: the browser's OWN traversal restore lands on the + * scroller BEFORE this handler swaps `#view` (see the comment above the function), and the swap + * that follows briefly leaves the incoming page shorter than the saved offset — `commitStage()` + * moves the outgoing page's nodes out before the incoming page's have finished growing under + * their own RPCs. The engine then clamps the scroller BACK to whatever height exists NOW, firing + * an ordinary `scroll` event that looks exactly like a reader's, and it lands before this tick has + * ever written anything (`wroteWin`/`wroteMain` still -1), so the "our own write coming back" + * check above cannot catch it either. Measured live (owrt2512b @1440, `/admin/status/overview` <- + * package-manager, Back): the UA restores `window.scrollY` to the parked 2684 in the same tick + * `popstate` fires, `commitStage()` leaves the document ~900px tall for one frame, and the next + * native `scroll` event reports `y=0` a whole 5 s before this function's own deadline — cancelling + * a restore that had not yet had the height to attempt. A clamp cannot land anywhere but the + * scroller's OWN current ceiling, and the reader cannot have scrolled PAST a height that does not + * exist yet, so a scroll landing exactly there while that ceiling is still short of the saved + * offset is the engine settling, not input — every real gesture that could produce it (a + * scrollbar drag past the same limit, in particular) already flows through the direct + * wheel/touchstart/keydown listeners below regardless of what onScroll decides. */ let cancelled = false, wroteWin = -1, wroteMain = -1; const stop = () => { cancelled = true; off(); }; const onScroll = (ev) => { const t = ev.target; - const now = (t === document || t === document.documentElement || t === document.body) - ? Math.round(window.scrollY) : (t && t.scrollTop); - if (now === wroteWin || now === wroteMain) return; /* our own write coming back */ + const isWin = (t === document || t === document.documentElement || t === document.body); + if (isWin) { + if (!pos.win) return; + if (Math.round(window.scrollY) === wroteWin) return; /* our own write coming back */ + const de = document.documentElement; + const ceiling = Math.max(0, de.scrollHeight - de.clientHeight); + if (ceiling < pos.win && Math.round(window.scrollY) === ceiling) return; /* the page settling */ + } + else { + if (!pos.main) return; + if (t && t.scrollTop === wroteMain) return; /* our own write coming back */ + const ceiling = t ? Math.max(0, t.scrollHeight - t.clientHeight) : 0; + if (ceiling < pos.main && t && t.scrollTop === ceiling) return; /* the page settling */ + } stop(); }; /* the keys that scroll, and only those: typing in a field must not cancel anything */ @@ -607,6 +646,15 @@ function seed() { /* the served page's entry needs an id too, or the first Back TO it has nothing to look up */ adoptEntry(); + /* Page-scoped CSS keys off `#view[data-page]` and `.fs-content[data-page]`, not `body` + * (commitStage) — but the server stamps only `body`, so a document that never took a client + * navigation would otherwise have neither. Copied, not recomputed: the server's value is + * already the resolved dispatch path (header.ut, `ctx.path`), and re-deriving it here from the + * tree could disagree with what the served markup actually carries. */ + const curPage = document.body ? (document.body.getAttribute('data-page') || '') : ''; + const contentHost = document.querySelector('.fs-content'); + if (contentHost) contentHost.setAttribute('data-page', curPage); + /* The document's own first render is the first link in the chain. A navigation waits for the * previous render because a LuCI view chain resolves `#view` at paint time and would otherwise * paint into the newer navigation's stage — and the first chain, `view.ut`'s inline @@ -619,7 +667,10 @@ function seed() { * keeps a document whose first view never renders from turning every later click into a * rejected promise. */ const vp = document.getElementById('view'); - if (vp) _inflight = renderedIn(vp).catch(() => {}); + if (vp) { + vp.setAttribute('data-page', curPage); + _inflight = renderedIn(vp).catch(() => {}); + } } /* ---- the incoming page is rendered off screen and swapped in when it is ready ---- @@ -711,6 +762,18 @@ function commitStage(stage, contentHost) { sheets.scopeToCurrentPage(); sweepAround(contentHost); const live = liveView(contentHost, stage); + /* …and the page-scoped CSS identity moves forward with it. `stage.view` carries the incoming + * page's name from navigate() (spared there the same way the sheets above were); this is the + * commit that finally moves it onto the element the reader is about to see and onto + * `.fs-content`, which the same CSS uses for content that sits beside `#view` rather than + * inside it (the Overview's stray `

`, styles/pages/20-overview.css). Until + * this line the LIVE `#view` and `.fs-content` still carried the OUTGOING page's name, so its + * own page-scoped rules kept matching for the whole staging window. */ + const page = stage.view.getAttribute('data-page'); + if (page != null) { + live.setAttribute('data-page', page); + if (contentHost) contentHost.setAttribute('data-page', page); + } const nodes = Array.from(stage.view.childNodes); const dom = window.L ? window.L.dom : null; if (live && dom && typeof dom.content === 'function') @@ -753,9 +816,9 @@ function liveView(contentHost, stage) { /* Clear what the outgoing page left as a SIBLING of #view inside .fs-content: dom.content() * replaces only #view's own children, so anything a page emitted next to it rides along — the - * Overview template's `

Status

` is hidden by a `body[data-page=…]` rule and - * would show on every later page. Keep only the chrome that legitimately outlives a page (tabs, - * server notices,